We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13dfe56 commit ce0cfb0Copy full SHA for ce0cfb0
1 file changed
packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx
@@ -1153,7 +1153,9 @@ export function Prompt(props: PromptProps) {
1153
<Show when={local.agent.current()} fallback={<box height={1} />}>
1154
{(agent) => (
1155
<>
1156
- <text fg={fadeColor(highlight(), agentMetaAlpha())}>{store.mode === "shell" ? "Shell" : Locale.titlecase(agent().name)}</text>
+ <text fg={fadeColor(highlight(), agentMetaAlpha())}>
1157
+ {store.mode === "shell" ? "Shell" : Locale.titlecase(agent().name)}
1158
+ </text>
1159
<Show when={store.mode === "normal"}>
1160
<box flexDirection="row" gap={1}>
1161
<text fg={fadeColor(theme.textMuted, modelMetaAlpha())}>·</text>
0 commit comments