From 79bcf7dcdfcea3110338673e47dbec29a3174417 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Thu, 22 Feb 2024 10:07:46 -0600 Subject: [PATCH] remove console log --- web/src/components/timeline/EventSegment.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/web/src/components/timeline/EventSegment.tsx b/web/src/components/timeline/EventSegment.tsx index 5595d799f..5e2c40cba 100644 --- a/web/src/components/timeline/EventSegment.tsx +++ b/web/src/components/timeline/EventSegment.tsx @@ -185,8 +185,6 @@ export function EventSegment({ // Check if the first segment is out of view const firstSegment = firstMinimapSegmentRef.current; if (firstSegment && showMinimap && isFirstSegmentInMinimap) { - // Scroll the first segment into view - console.log("scrolling into view"); firstSegment.scrollIntoView({ behavior: "smooth", block: "nearest" }); } }, [showMinimap, isFirstSegmentInMinimap, timestampSpread]);