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}