diff --git a/modules/customers/src/web/list/ui/blocks/customers-grid/customers-grid.tsx b/modules/customers/src/web/list/ui/blocks/customers-grid/customers-grid.tsx index e6db73c1..c3e98fc4 100644 --- a/modules/customers/src/web/list/ui/blocks/customers-grid/customers-grid.tsx +++ b/modules/customers/src/web/list/ui/blocks/customers-grid/customers-grid.tsx @@ -8,7 +8,6 @@ import type { CustomerList, CustomerListRow } from "../../../../shared"; interface CustomersGridProps { data?: CustomerList; loading: boolean; - fetching?: boolean; columns: ColumnDef[]; @@ -23,7 +22,6 @@ interface CustomersGridProps { export const CustomersGrid = ({ data, loading, - fetching, columns, pageIndex, pageSize, diff --git a/modules/customers/src/web/list/ui/pages/list-customers-page.tsx b/modules/customers/src/web/list/ui/pages/list-customers-page.tsx index 00804db8..3b4a871a 100644 --- a/modules/customers/src/web/list/ui/pages/list-customers-page.tsx +++ b/modules/customers/src/web/list/ui/pages/list-customers-page.tsx @@ -42,7 +42,6 @@ export const ListCustomersPage = () => {