From 46291becd32d233fbc5bffade2b0f50354023301 Mon Sep 17 00:00:00 2001 From: mawkone Date: Wed, 10 Jun 2026 17:52:38 -0700 Subject: [PATCH] ux(chat): remove the reasoning/suggestion bubble and the 'executing tools & planning next steps' status line --- .../components/vibn-chat/chat-panel.tsx | 32 ++----------------- 1 file changed, 3 insertions(+), 29 deletions(-) diff --git a/vibn-frontend/components/vibn-chat/chat-panel.tsx b/vibn-frontend/components/vibn-chat/chat-panel.tsx index e0b1a76..5d43e9b 100644 --- a/vibn-frontend/components/vibn-chat/chat-panel.tsx +++ b/vibn-frontend/components/vibn-chat/chat-panel.tsx @@ -705,7 +705,9 @@ function Timeline({ entries }: { entries: TimelineEntry[] }) {
{items.map((item, i) => { if (item.kind === "thought") { - return ; + // Reasoning/thought bubbles are intentionally not rendered — they're + // internal and add noise to the chat. + return null; } if (item.kind === "text") { return ; @@ -1998,34 +2000,6 @@ export function ChatPanel({ ))} - {sending && ( -
- - - {messages[messages.length - 1]?.role !== "assistant" - ? "Vibn AI is formulating plan..." - : "Vibn AI is executing tools & planning next steps..."} - -
- )} -