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}` : ""}` }