From 8dcf6db08f4e3d3d57b059d76c23067159893a4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Meyer?= Date: Wed, 12 Jul 2023 14:24:43 +0200 Subject: [PATCH] feat(poc): test commit --- components/collection/pagination.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/collection/pagination.tsx b/components/collection/pagination.tsx index ad3692498..2d560cf52 100644 --- a/components/collection/pagination.tsx +++ b/components/collection/pagination.tsx @@ -12,7 +12,7 @@ export default function Pagination({ itemsPerPage, itemsTotal, currentPage }: { const sort = currentParams.get('sort'); const pageCount = Math.ceil(itemsTotal / itemsPerPage); - // Invoke when user click to request another page. + // Invoke when user click to request another page. test const handlePageClick = (event: clickEvent) => { const page = event.selected; const newPage = page + 1;