From 75cfb3681ddba669b876a030038e0057eb00fa8f Mon Sep 17 00:00:00 2001 From: FuelBoard Contributor Date: Wed, 12 Aug 2026 07:58:01 +0100 Subject: [PATCH] Remove 'Distance only applies to Cheapest' explainer Closest mode now shows the disabled distance picker with no caption; the N-stations-within caption still appears in Cheapest mode. --- FuelBoard/StationsView.swift | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/FuelBoard/StationsView.swift b/FuelBoard/StationsView.swift index b96a631..ec6d08a 100644 --- a/FuelBoard/StationsView.swift +++ b/FuelBoard/StationsView.swift @@ -75,11 +75,7 @@ struct StationsView: View { FuelStore.saveStationLimit(newValue) } .padding(.vertical, 2) - if sortMode == .closest { - Text("Distance only applies to Cheapest") - .font(.caption2) - .foregroundStyle(.secondary) - } else { + if sortMode != .closest { Text("\(totalCount) stations within \(stationLimit) \(distanceUnit.label)") .font(.caption2) .foregroundStyle(.secondary)