Skip to content

Commit db70d49

Browse files
committed
remove console
1 parent c003136 commit db70d49

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

package/src/hooks/useSwipe.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ const useSwipe = (
3737
let isSwiping = false;
3838

3939
const handleTouchStart = (event: TouchEvent) => {
40-
console.log('touchstart');
4140
if (!ref.current || !event.touches[0]) return;
4241

4342
startX = event.touches[0].clientX;
@@ -50,7 +49,6 @@ const useSwipe = (
5049
};
5150

5251
const handleTouchMove = (event: TouchEvent) => {
53-
console.log('touchmove');
5452
if (!isSwiping || !ref.current || !event.touches[0]) return;
5553

5654
endX = event.touches[0].clientX;

0 commit comments

Comments
 (0)