From c43bdad2dd8be628cebceae12a5a2bb6c74542df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samy=20Pess=C3=A9?= Date: Mon, 8 Apr 2024 12:27:10 +0200 Subject: [PATCH] Format --- src/components/DocumentView/Table/ViewCards.tsx | 2 +- src/components/DocumentView/Table/ViewGrid.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/DocumentView/Table/ViewCards.tsx b/src/components/DocumentView/Table/ViewCards.tsx index a90da2acd..b2c4c9566 100644 --- a/src/components/DocumentView/Table/ViewCards.tsx +++ b/src/components/DocumentView/Table/ViewCards.tsx @@ -1,10 +1,10 @@ import { DocumentTableViewCards } from '@gitbook/api'; +import { MAX_WIDTH_FULL_WIDTH } from '@/components/layout'; import { tcls } from '@/lib/tailwind'; import { RecordCard } from './RecordCard'; import { TableViewProps } from './Table'; -import { MAX_WIDTH_FULL_WIDTH } from '@/components/layout'; export function ViewCards(props: TableViewProps) { const { block, view, records, style } = props; diff --git a/src/components/DocumentView/Table/ViewGrid.tsx b/src/components/DocumentView/Table/ViewGrid.tsx index bf2b1fd2b..bb515f500 100644 --- a/src/components/DocumentView/Table/ViewGrid.tsx +++ b/src/components/DocumentView/Table/ViewGrid.tsx @@ -1,12 +1,12 @@ import { DocumentTableViewGrid } from '@gitbook/api'; +import { MAX_WIDTH_FULL_WIDTH } from '@/components/layout'; import { tcls } from '@/lib/tailwind'; import { RecordRow } from './RecordRow'; import { TableViewProps } from './Table'; import styles from './table.module.css'; import { getColumnAlignment } from './utils'; -import { MAX_WIDTH_FULL_WIDTH } from '@/components/layout'; export function ViewGrid(props: TableViewProps) { const { block, view, records, style } = props;