diff --git a/client/src/pages/FolxStadlPage.tsx b/client/src/pages/FolxStadlPage.tsx index ec0708d..a9895d9 100644 --- a/client/src/pages/FolxStadlPage.tsx +++ b/client/src/pages/FolxStadlPage.tsx @@ -63,8 +63,8 @@ export default function FolxStadlPage() { if (!touchStart || !touchEnd) return; const distance = touchStart - touchEnd; - const isLeftSwipe = distance > 50; - const isRightSwipe = distance < -50; + const isLeftSwipe = distance > 30; + const isRightSwipe = distance < -30; if (isLeftSwipe && currentPage < totalPages) { setCurrentPage(currentPage + 1); diff --git a/client/src/pages/GeschichteLiedPage.tsx b/client/src/pages/GeschichteLiedPage.tsx index 9ce110c..18af750 100644 --- a/client/src/pages/GeschichteLiedPage.tsx +++ b/client/src/pages/GeschichteLiedPage.tsx @@ -65,8 +65,8 @@ export default function GeschichteLiedPage() { if (!touchStart || !touchEnd) return; const distance = touchStart - touchEnd; - const isLeftSwipe = distance > 50; - const isRightSwipe = distance < -50; + const isLeftSwipe = distance > 30; + const isRightSwipe = distance < -30; console.log('Geschichte Swipe:', { distance, isLeftSwipe, isRightSwipe, currentPage, totalPages, videosCount: geschichteVideos.length }); diff --git a/client/src/pages/GipfelstammtischPage.tsx b/client/src/pages/GipfelstammtischPage.tsx index 22d3490..814a281 100644 --- a/client/src/pages/GipfelstammtischPage.tsx +++ b/client/src/pages/GipfelstammtischPage.tsx @@ -65,8 +65,8 @@ export default function GipfelstammtischPage() { if (!touchStart || !touchEnd) return; const distance = touchStart - touchEnd; - const isLeftSwipe = distance > 50; - const isRightSwipe = distance < -50; + const isLeftSwipe = distance > 30; + const isRightSwipe = distance < -30; console.log('Gipfel Swipe:', { distance, isLeftSwipe, isRightSwipe, currentPage, totalPages, videosCount: gipfelVideos.length });