From 5bde2071884d238d29d28d76ffb757c36a30292f Mon Sep 17 00:00:00 2001 From: david Date: Thu, 2 Apr 2026 12:46:17 +0200 Subject: [PATCH] Customers, arreglos --- .../src/web/list/ui/blocks/customers-grid/customers-grid.tsx | 2 -- modules/customers/src/web/list/ui/pages/list-customers-page.tsx | 1 - 2 files changed, 3 deletions(-) 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 = () => {