From b11f79a49680a4c873af68acbef093003e54f6e6 Mon Sep 17 00:00:00 2001 From: ved015 Date: Tue, 2 Jun 2026 21:37:01 +0530 Subject: [PATCH] keep icon not label --- apps/web/components/chat/input/index.tsx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/apps/web/components/chat/input/index.tsx b/apps/web/components/chat/input/index.tsx index 9a0d01fb..f184f20d 100644 --- a/apps/web/components/chat/input/index.tsx +++ b/apps/web/components/chat/input/index.tsx @@ -153,11 +153,9 @@ export default function ChatInput({ {queuedMessages.map((queued) => { const model = modelNames[queued.model] const ReasoningIcon = - queued.reasoningEffort === "thinking" ? BrainIcon : ZapIcon - const reasoningLabel = queued.reasoningEffort === "thinking" - ? "Thinking" - : "Instant" + ? BrainIcon + : ZapIcon return ( ยท - {reasoningLabel}