diff --git a/frontend/src/components/pagination.tsx b/frontend/src/components/pagination.tsx index 670ff5a..7fbb8a1 100644 --- a/frontend/src/components/pagination.tsx +++ b/frontend/src/components/pagination.tsx @@ -9,27 +9,27 @@ export default function Pagination({page, setPage, totalPages}: { const items: ReactNode[] = []; if (page > 1) { - items.push(); + items.push(); } if (page - 2 > 1) { - items.push(); + items.push(); } if (page - 1 > 1) { - items.push(); + items.push(); } - items.push(); + items.push(); if (page + 1 < totalPages) { - items.push(); + items.push(); } if (page + 2 < totalPages) { - items.push(); + items.push(); } if (page < totalPages) { - items.push(); + items.push(); } return
- {items} -