Merge branch 'dev' of github.com:anomalyco/opencode into dev

This commit is contained in:
Frank 2026-08-20 02:08:32 -04:00
commit ccccd75328

View file

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