From fdbdb0ee261e2b91839d10ac4a7d10529faa131e Mon Sep 17 00:00:00 2001 From: david Date: Mon, 20 Oct 2025 09:28:58 +0200 Subject: [PATCH] Facturas de cliente --- .../customer-invoices/src/web/pages/list/invoices-list-page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/customer-invoices/src/web/pages/list/invoices-list-page.tsx b/modules/customer-invoices/src/web/pages/list/invoices-list-page.tsx index f50dc16d..d023d1af 100644 --- a/modules/customer-invoices/src/web/pages/list/invoices-list-page.tsx +++ b/modules/customer-invoices/src/web/pages/list/invoices-list-page.tsx @@ -13,7 +13,7 @@ export const InvoiceListPage = () => { const { t } = useTranslation(); const navigate = useNavigate(); - const [pageIndex, setPageIndex] = useState(5); + const [pageIndex, setPageIndex] = useState(0); const [pageSize, setPageSize] = useState(10); const [search, setSearch] = useState(""); const debouncedQ = useDebounce(search, 300);