diff --git a/src/routes/invoices.index.tsx b/src/routes/invoices.index.tsx index b8a23e2..c165f72 100644 --- a/src/routes/invoices.index.tsx +++ b/src/routes/invoices.index.tsx @@ -366,6 +366,22 @@ function InvoicesIndex() { + {totalCount > PAGE_SIZE && ( +
+ + Showing {totalCount === 0 ? 0 : page * PAGE_SIZE + 1}–{Math.min((page + 1) * PAGE_SIZE, totalCount)} of {totalCount} + +
+ + Page {page + 1} of {totalPages} + +
+
+ )}