Customers, arreglos

This commit is contained in:
David Arranz 2026-04-02 12:46:17 +02:00
parent ee97a5800b
commit 5bde207188
2 changed files with 0 additions and 3 deletions

View File

@ -8,7 +8,6 @@ import type { CustomerList, CustomerListRow } from "../../../../shared";
interface CustomersGridProps {
data?: CustomerList;
loading: boolean;
fetching?: boolean;
columns: ColumnDef<CustomerListRow, unknown>[];
@ -23,7 +22,6 @@ interface CustomersGridProps {
export const CustomersGrid = ({
data,
loading,
fetching,
columns,
pageIndex,
pageSize,

View File

@ -42,7 +42,6 @@ export const ListCustomersPage = () => {
<CustomersGrid
columns={columns}
data={listCtrl.data}
fetching={listCtrl.isFetching}
loading={listCtrl.isLoading}
onPageChange={listCtrl.setPageIndex}
onPageSizeChange={listCtrl.setPageSize}