diff --git a/ui/src/ui/app-render.helpers.ts b/ui/src/ui/app-render.helpers.ts index 50a1b300e..d2b2d3e5e 100644 --- a/ui/src/ui/app-render.helpers.ts +++ b/ui/src/ui/app-render.helpers.ts @@ -88,7 +88,9 @@ export function renderChatControls(state: AppViewState) { (entry) => entry.key, (entry) => { const base = entry.displayName ?? entry.key; - const text = entry.label ? `${base} — ${entry.label}` : base; + // Only append label if it differs from displayName + const showLabel = entry.label && entry.label !== entry.displayName; + const text = showLabel ? `${base} — ${entry.label}` : base; return html``; }, )}