From e7ebe42306dfd5f5aa6de0396bf8a2ca8b9cf587 Mon Sep 17 00:00:00 2001 From: Swifty Date: Fri, 6 Feb 2026 12:23:32 +0100 Subject: [PATCH] fix(frontend): Revert ThinkingMessage progress bar delay to original values (#11993) --- .../Chat/components/ThinkingMessage/ThinkingMessage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autogpt_platform/frontend/src/components/contextual/Chat/components/ThinkingMessage/ThinkingMessage.tsx b/autogpt_platform/frontend/src/components/contextual/Chat/components/ThinkingMessage/ThinkingMessage.tsx index 34018f0292..2202705e65 100644 --- a/autogpt_platform/frontend/src/components/contextual/Chat/components/ThinkingMessage/ThinkingMessage.tsx +++ b/autogpt_platform/frontend/src/components/contextual/Chat/components/ThinkingMessage/ThinkingMessage.tsx @@ -19,13 +19,13 @@ export function ThinkingMessage({ className }: ThinkingMessageProps) { if (timerRef.current === null) { timerRef.current = setTimeout(() => { setShowSlowLoader(true); - }, 3000); + }, 8000); } if (coffeeTimerRef.current === null) { coffeeTimerRef.current = setTimeout(() => { setShowCoffeeMessage(true); - }, 8000); + }, 10000); } return () => {