We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63b3b39 commit 6998654Copy full SHA for 6998654
src/hooks/useMobileTouchMove.ts
@@ -49,7 +49,7 @@ export default function useMobileTouchMove(
49
const onTouchStart = (e: TouchEvent) => {
50
cleanUpEvents();
51
52
- if (e.touches.length === 1 && !touchedRef.current) {
+ if (e.touches.length === 1) {
53
touchedRef.current = true;
54
touchYRef.current = Math.ceil(e.touches[0].pageY);
55
0 commit comments