From 4b221151592cae4548ddc2243aba80cc54a50928 Mon Sep 17 00:00:00 2001 From: webfussel Date: Sat, 10 May 2025 13:41:10 +0200 Subject: [PATCH] remove: console.log Removed useless console.log --- app/components/Pp/PriceCard.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/app/components/Pp/PriceCard.vue b/app/components/Pp/PriceCard.vue index f1400ba..7622f25 100755 --- a/app/components/Pp/PriceCard.vue +++ b/app/components/Pp/PriceCard.vue @@ -79,7 +79,6 @@ const { lengthX, direction, isSwiping } = useSwipe(top, { passive: true, threshold: 30, onSwipe() { - console.log(direction.value) if (['down', 'up'].includes(direction.value)) return left.value = `${-clamp(lengthX.value, -100, 100)}px` },