We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6104c1 commit b78aa72Copy full SHA for b78aa72
1 file changed
cli/src/chat.tsx
@@ -382,6 +382,7 @@ export const App = ({
382
})),
383
)
384
385
+ const showAgentDisplayName = !!agentId
386
// Get current agent display name based on mode
387
const agentDisplayName = useMemo(() => {
388
if (!loadedAgentsData) return null
@@ -1290,7 +1291,7 @@ export const App = ({
1290
1291
</box>
1292
<Separator width={separatorWidth} />
1293
{/* Agent status line - right-aligned under toggle */}
- {loadedAgentsData && (
1294
+ {showAgentDisplayName && loadedAgentsData && (
1295
<box
1296
style={{
1297
flexDirection: 'row',
0 commit comments