diff --git a/client/src/pages/VideoPage.tsx b/client/src/pages/VideoPage.tsx index 6628211..527e732 100644 --- a/client/src/pages/VideoPage.tsx +++ b/client/src/pages/VideoPage.tsx @@ -167,8 +167,8 @@ export default function VideoPage() { if (!touchStart || !touchEnd) return; const distance = touchStart - touchEnd; - const isLeftSwipe = distance > 50; - const isRightSwipe = distance < -50; + const isLeftSwipe = distance > 20; + const isRightSwipe = distance < -20; if (isLeftSwipe) { navigateToVideo('next');