From 2495c7e47e1985579271ec36d31ef083b9d3674a Mon Sep 17 00:00:00 2001 From: FuelBoard Contributor Date: Mon, 17 Aug 2026 16:58:23 +0100 Subject: [PATCH] Finalize alerts tab labels --- FuelBoard/AlertsView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FuelBoard/AlertsView.swift b/FuelBoard/AlertsView.swift index 7963ddb..d706aec 100644 --- a/FuelBoard/AlertsView.swift +++ b/FuelBoard/AlertsView.swift @@ -146,7 +146,7 @@ struct AlertsView: View { } Section { - Toggle("Enabled", isOn: $enabled) + Toggle("Cheapest station", isOn: $enabled) Picker("Fuel", selection: $fuel) { ForEach(FuelType.allCases) { fuel in Text(fuel.displayName).tag(fuel) @@ -167,7 +167,7 @@ struct AlertsView: View { .foregroundStyle(.secondary) } } header: { - Text("Cheapest station") + Text("Proximity alerts") } footer: { Text("When you approach a station that is the cheapest within the radius, FuelBoard sends a notification — even with the app closed. Nearby stations selling \(fuel.displayName.lowercased()) are watched — favourites get priority — and each station alerts at most once per hour. Follow search mirrors the Stations-tab distance, capped at 8 miles for reliable geofencing. Smaller radii ping more often but later; larger radii ping rarely in town but earlier from afar.") }