diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
index eb21213..954904e 100644
--- a/frontend/src/App.tsx
+++ b/frontend/src/App.tsx
@@ -6982,8 +6982,11 @@ export default function App() {
it said something was happening and refused to say what. */}
{String(o.band).toUpperCase()}
{o.compass}
- {o.median_km >= 1000
- ? `${(o.median_km / 1000).toFixed(1)}k` : o.median_km}km
+ {/* Plain kilometres. An earlier attempt abbreviated 1500 to
+ "1.5k" and then appended the unit, giving "1.5kkm" — and even
+ written correctly, "1.5k km" makes a reader do arithmetic to
+ recover a number that was four characters long to begin with. */}
+ {o.median_km} km
{/* Out of season is the one an operator must not learn last, so it
earns a mark on the badge rather than a line in the tooltip. */}
{!o.in_season && !}