mirror of
https://git.vectorsigma.ru/public/tubearchivist.git
synced 2026-08-04 18:19:35 +00:00
Fix pagination not preving page navigation on arrow key navigation
This commit is contained in:
@@ -37,6 +37,8 @@ const Pagination = ({ pagination, setPage }: Props) => {
|
||||
|
||||
const handleKeyEvent = useCallback(
|
||||
(event: KeyboardEvent) => {
|
||||
event.preventDefault();
|
||||
|
||||
const { code } = event;
|
||||
|
||||
if (code === 'ArrowRight') {
|
||||
|
||||
Reference in New Issue
Block a user