From 84cb259283c46c129bcd348ad1404ff6479504a6 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 19 May 2026 10:51:07 -0600 Subject: [PATCH] Cleanup --- web/src/pages/Chat.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/web/src/pages/Chat.tsx b/web/src/pages/Chat.tsx index 6903fae966..4621c97540 100644 --- a/web/src/pages/Chat.tsx +++ b/web/src/pages/Chat.tsx @@ -203,7 +203,10 @@ export default function ChatPage() { const hasContent = !!msg.content?.trim(); const hasReasoning = !!msg.reasoning?.trim(); const showProcessing = - isLastAssistant && isLoading && !hasContent && !hasReasoning; + isLastAssistant && + isLoading && + !hasContent && + !hasReasoning; // Hide empty placeholder only when there are no tool calls // and no reasoning streaming yet