From e0f0da1c8cf7cf2d216c5942478f14b0af64813e Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Mon, 25 Aug 2025 17:16:17 -0600 Subject: [PATCH] Remove logging --- src/plugins/scrollManager.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/plugins/scrollManager.js b/src/plugins/scrollManager.js index fa43cdf..3384356 100644 --- a/src/plugins/scrollManager.js +++ b/src/plugins/scrollManager.js @@ -104,7 +104,6 @@ function createMomentumDrag({ const dy = last.position - first.position if (Math.abs(dy) > 5) velocity = (-dy * speed) / (now - first.timestamp) } - console.log(velocity, samples) samples = [] startMomentum() }