diff --git a/src/components/ui/DataTable.tsx b/src/components/ui/DataTable.tsx index d372e486..802084f0 100644 --- a/src/components/ui/DataTable.tsx +++ b/src/components/ui/DataTable.tsx @@ -550,12 +550,6 @@ export function DataTable(props: DataTableProps) { ); } - // Calculate the number of empty rows needed to fill the space - const emptyRows = Math.min( - 25, - rowsPerPage - Math.min(rowsPerPage, rows.length - page * rowsPerPage), - ); - return ( - + ); })} - {emptyRows > 0 && ( - - - - )}