From db70d49cc352875e8826bb340ec1eeacb40531ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=8B=A0=EC=9A=A9=EC=A4=80?= Date: Wed, 6 Sep 2023 06:12:28 +0900 Subject: [PATCH] remove console --- package/src/hooks/useSwipe.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/package/src/hooks/useSwipe.ts b/package/src/hooks/useSwipe.ts index 2a248d6..6298567 100644 --- a/package/src/hooks/useSwipe.ts +++ b/package/src/hooks/useSwipe.ts @@ -37,7 +37,6 @@ const useSwipe = ( let isSwiping = false; const handleTouchStart = (event: TouchEvent) => { - console.log('touchstart'); if (!ref.current || !event.touches[0]) return; startX = event.touches[0].clientX; @@ -50,7 +49,6 @@ const useSwipe = ( }; const handleTouchMove = (event: TouchEvent) => { - console.log('touchmove'); if (!isSwiping || !ref.current || !event.touches[0]) return; endX = event.touches[0].clientX;