diff --git a/src/hooks/useMobileTouchMove.ts b/src/hooks/useMobileTouchMove.ts
index 1c6cfa6d..9da81a55 100644
--- a/src/hooks/useMobileTouchMove.ts
+++ b/src/hooks/useMobileTouchMove.ts
@@ -49,7 +49,7 @@ export default function useMobileTouchMove(
   const onTouchStart = (e: TouchEvent) => {
     cleanUpEvents();
 
-    if (e.touches.length === 1 && !touchedRef.current) {
+    if (e.touches.length === 1) {
       touchedRef.current = true;
       touchYRef.current = Math.ceil(e.touches[0].pageY);