Skip to content

Commit

Permalink
Remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
piaskowyk committed Nov 2, 2023
1 parent a1d668d commit 6e12838
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/gesture-handler/GestureDetector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ const TransitionHandler = ({
isTransitionCanceled =
Math.abs(event.translationX + event.velocityX * 0.3) <
screenSize.width / 2;
console.log(isTransitionCanceled, event.translationX, event.velocityX);
} else if (goBackGesture === 'swipeDown' || goBackGesture === 'swipeUp') {
isTransitionCanceled =
Math.abs(event.translationY + event.velocityY * 0.3) <
Expand Down

0 comments on commit 6e12838

Please sign in to comment.