Skip to content

Commit 3a6ec8d

Browse files
committed
fix: update TableCell height in DataTable component to avoid deferent empty size
1 parent 433f2a9 commit 3a6ec8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/DataTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export function DataTable<TData extends { destination: string }, TValue>({
8080
}).map((_, index) => (
8181
<TableRow key={`empty-${index}`}>
8282
{columns.map((_, colIndex) => (
83-
<TableCell key={colIndex} className="h-12">
83+
<TableCell key={colIndex} className="h-17">
8484
&nbsp;
8585
</TableCell>
8686
))}

0 commit comments

Comments
 (0)