From aa04055a1af77a28eef78ef7a19cccd428f934b4 Mon Sep 17 00:00:00 2001 From: Julien Froidefond Date: Sun, 16 Feb 2025 21:03:49 +0100 Subject: [PATCH] fix: swipe in thumbnails not navigating --- src/components/reader/components/NavigationBar.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/reader/components/NavigationBar.tsx b/src/components/reader/components/NavigationBar.tsx index c732f60..4fa88b4 100644 --- a/src/components/reader/components/NavigationBar.tsx +++ b/src/components/reader/components/NavigationBar.tsx @@ -40,6 +40,9 @@ export const NavigationBar = ({
e.stopPropagation()} + onTouchMove={(e) => e.stopPropagation()} + onTouchEnd={(e) => e.stopPropagation()} >
{pages.map((_, index) => {