diff --git a/client/src/components/Chat/Input/SteerMenu.tsx b/client/src/components/Chat/Input/SteerMenu.tsx
index 205ead3d2e..75dfdb9079 100644
--- a/client/src/components/Chat/Input/SteerMenu.tsx
+++ b/client/src/components/Chat/Input/SteerMenu.tsx
@@ -108,31 +108,38 @@ export function EscalateNowButton({
const chord = useShortcutDisplay('escalateSteer');
const label = localize('com_ui_interrupt_steer_now');
return (
-
-
-
-
- }
- />
-
- {chord ? `${label} · ${chord}` : label}
-
-
+ <>
+ {/* Thin divider binds the arrow to the message on its left, so it can
+ * never read as part of the bare-glyph menu control beside it — the
+ * send-now belongs to THIS chip, and the pairing repeats cleanly when
+ * several messages stack. */}
+
+
+
+
+
+ }
+ />
+
+ {chord ? `${label} · ${chord}` : label}
+
+
+ >
);
}