diff --git a/client/src/components/Chat/Input/SteerMenu.tsx b/client/src/components/Chat/Input/SteerMenu.tsx index 75dfdb9079..46c8b6bf8f 100644 --- a/client/src/components/Chat/Input/SteerMenu.tsx +++ b/client/src/components/Chat/Input/SteerMenu.tsx @@ -136,7 +136,9 @@ export function EscalateNowButton({ } /> - {chord ? `${label} · ${chord}` : label} + {/* A disabled control's shortcut does nothing right now, so the + * chord is only advertised while the escalation is live. */} + {chord && !disabled ? `${label} · ${chord}` : label}