mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-06 08:16:03 +00:00
keep icon not label
This commit is contained in:
parent
68c424c163
commit
b11f79a496
1 changed files with 2 additions and 5 deletions
|
|
@ -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 (
|
||||
<motion.div
|
||||
key={queued.id}
|
||||
|
|
@ -188,7 +186,6 @@ export default function ChatInput({
|
|||
</span>
|
||||
<span className="text-white/18">·</span>
|
||||
<ReasoningIcon className="size-3 shrink-0 text-white/30" />
|
||||
<span className="truncate">{reasoningLabel}</span>
|
||||
</span>
|
||||
</div>
|
||||
</motion.div>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue