From f4a89683da2fb5fd1b37995402100ca7a24a8484 Mon Sep 17 00:00:00 2001 From: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Date: Thu, 20 Aug 2026 00:46:39 -0500 Subject: [PATCH] fix(tui): remove encrypted label from thought header (#43588) --- packages/tui/src/routes/session/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tui/src/routes/session/index.tsx b/packages/tui/src/routes/session/index.tsx index 5112fd6ce..cbdaf0cfa 100644 --- a/packages/tui/src/routes/session/index.tsx +++ b/packages/tui/src/routes/session/index.tsx @@ -1663,7 +1663,7 @@ function ReasoningHeader(props: { ? RGBA.fromValues(theme.warning.r, theme.warning.g, theme.warning.b, theme.thinkingOpacity) : theme.warning const completed = () => { - if (props.encrypted) return `Thought (encrypted)${props.duration ? ` · ${props.duration}` : ""}` + if (props.encrypted) return `Thought${props.duration ? ` · ${props.duration}` : ""}` const detail = [props.title, props.duration].filter(Boolean).join(" · ") return `${props.toggleable ? (props.open ? "- " : "+ ") : ""}Thought${detail ? `: ${detail}` : ""}` }