Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
SamyPesse committed Apr 8, 2024
1 parent 0c3c84a commit c43bdad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/DocumentView/Table/ViewCards.tsx
Original file line number Diff line number Diff line change
@@ -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<DocumentTableViewCards>) {
const { block, view, records, style } = props;
Expand Down
2 changes: 1 addition & 1 deletion src/components/DocumentView/Table/ViewGrid.tsx
Original file line number Diff line number Diff line change
@@ -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<DocumentTableViewGrid>) {
const { block, view, records, style } = props;
Expand Down

0 comments on commit c43bdad

Please sign in to comment.