From 6fdd9bb6022233c1cddc696d494257ac7b66a880 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Fri, 23 Feb 2024 07:12:15 -0600 Subject: [PATCH] update debounce time --- web/src/components/timeline/EventSegment.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/timeline/EventSegment.tsx b/web/src/components/timeline/EventSegment.tsx index da66238b9..7113e660e 100644 --- a/web/src/components/timeline/EventSegment.tsx +++ b/web/src/components/timeline/EventSegment.tsx @@ -192,7 +192,7 @@ export function EventSegment({ clearTimeout(debounceTimer); debounceTimer = setTimeout(() => { element.scrollIntoView({ behavior: "smooth", block: "center" }); - }, 50); + }, 100); } useEffect(() => {