diff --git a/FuelBoard/StationsView.swift b/FuelBoard/StationsView.swift index ec6d08a..6535781 100644 --- a/FuelBoard/StationsView.swift +++ b/FuelBoard/StationsView.swift @@ -30,11 +30,11 @@ struct StationsView: View { Section { if let location { if sortMode == .closest { - Text("Closest \(selectedFuel.displayName) stations — nearest first, best value within \(stationLimit) \(distanceUnit.label).") + Text("Closest \(selectedFuel.displayName) stations — nearest first, best value within \(stationLimit) \(distanceUnit.label) · \(totalCount) stations") .font(.footnote) .foregroundStyle(.secondary) } else { - Text("Cheapest \(selectedFuel.displayName) within \(stationLimit) \(distanceUnit.label) — tap a station for directions.") + Text("Cheapest \(selectedFuel.displayName) within \(stationLimit) \(distanceUnit.label) — \(totalCount) stations · tap a station for directions.") .font(.footnote) .foregroundStyle(.secondary) } @@ -75,11 +75,6 @@ struct StationsView: View { FuelStore.saveStationLimit(newValue) } .padding(.vertical, 2) - if sortMode != .closest { - Text("\(totalCount) stations within \(stationLimit) \(distanceUnit.label)") - .font(.caption2) - .foregroundStyle(.secondary) - } } Section("Stations") {