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);