From b6cff9ba012e548ad09102fe19aa603a7d3b45c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Meyer?= Date: Thu, 13 Jul 2023 12:19:38 +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 40ad782f3..bfd8aec31 100644 --- a/components/collection/pagination.tsx +++ b/components/collection/pagination.tsx @@ -20,7 +20,7 @@ export default function Pagination({ 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;