diff --git a/src/features/map/PacketFlowButton.tsx b/src/features/map/PacketFlowButton.tsx index 61862cd..d1fe3e3 100644 --- a/src/features/map/PacketFlowButton.tsx +++ b/src/features/map/PacketFlowButton.tsx @@ -3,20 +3,21 @@ interface PacketFlowButtonProps { onToggle: () => void; } -// Floating play/stop control for the live packet-flow animation. Off by default; when live it shows -// a pulsing dot and accent styling. Bottom-center, clear of the corner map controls. +// Floating play/stop control for the live packet-flow animation. Off by default; keeps an accent +// border either way so it reads as a control, not decoration. Bottom-center, clear of the corner +// map controls. Labelled "Live Map" to distinguish it from the header's LIVE websocket badge. export function PacketFlowButton({ active, onToggle }: PacketFlowButtonProps) { return ( ); }