From a1c470231e72f301193157c2e2bc4b6516e87588 Mon Sep 17 00:00:00 2001 From: Vukasin Date: Wed, 23 Jul 2025 18:05:10 +0200 Subject: [PATCH] fix: timing --- frontend/src/components/thread/content/ShowToolStream.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/thread/content/ShowToolStream.tsx b/frontend/src/components/thread/content/ShowToolStream.tsx index 403c1b1d..b34b2d79 100644 --- a/frontend/src/components/thread/content/ShowToolStream.tsx +++ b/frontend/src/components/thread/content/ShowToolStream.tsx @@ -56,10 +56,10 @@ export const ShowToolStream: React.FC = ({ } const elapsed = Date.now() - effectiveStartTime; - if (elapsed >= 1500) { + if (elapsed >= 2000) { setShouldShowContent(true); } else { - const delay = 1500 - elapsed; + const delay = 2000 - elapsed; const timer = setTimeout(() => { setShouldShowContent(true); }, delay);