diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index f3b30a1..55b51c1 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -4308,31 +4308,27 @@ export default function App() { -
+
{liveStations.filter((s) => s.online).length === 0 ? (

{t('live.stationsEmpty')}

) : liveStations.filter((s) => s.online).map((s, i) => { const mc = modeAccent(s.mode); + // Single compact row so 5+ stations fit without scrolling. return ( -
+
-
-
- {s.operator} - {s.version && v{s.version}} -
-
- - {s.freq_hz ? (s.freq_hz / 1e6).toFixed(3) : '—'} - - {s.mode && ( - {s.mode} - )} - {s.band && {s.band}} -
-
+ {s.operator} + + {s.freq_hz ? (s.freq_hz / 1e6).toFixed(3) : '—'} + + {s.mode && ( + {s.mode} + )} + {s.band && {s.band}} + + {s.version && v{s.version}}
); })}