Fix pagination not preving page navigation on arrow key navigation

This commit is contained in:
MerlinScheurer 2025-03-29 10:55:39 +01:00
parent a2cb2d283c
commit 0d1bdb8904
1 changed files with 2 additions and 0 deletions

View File

@ -37,6 +37,8 @@ const Pagination = ({ pagination, setPage }: Props) => {
const handleKeyEvent = useCallback(
(event: KeyboardEvent) => {
event.preventDefault();
const { code } = event;
if (code === 'ArrowRight') {