From 0d1bdb89041df36daa06da5090fc69e2fa03e779 Mon Sep 17 00:00:00 2001 From: MerlinScheurer Date: Sat, 29 Mar 2025 10:55:39 +0100 Subject: [PATCH] Fix pagination not preving page navigation on arrow key navigation --- frontend/src/components/Pagination.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/components/Pagination.tsx b/frontend/src/components/Pagination.tsx index 979a92cd..d0540365 100644 --- a/frontend/src/components/Pagination.tsx +++ b/frontend/src/components/Pagination.tsx @@ -37,6 +37,8 @@ const Pagination = ({ pagination, setPage }: Props) => { const handleKeyEvent = useCallback( (event: KeyboardEvent) => { + event.preventDefault(); + const { code } = event; if (code === 'ArrowRight') {