From 02ac8540f3cb5edd968eb897016621e558e80727 Mon Sep 17 00:00:00 2001 From: FuelBoard Contributor Date: Mon, 17 Aug 2026 16:45:55 +0100 Subject: [PATCH] Tweak alerts tab copy --- FuelBoard/AlertsView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/FuelBoard/AlertsView.swift b/FuelBoard/AlertsView.swift index 5d51681..1fae409 100644 --- a/FuelBoard/AlertsView.swift +++ b/FuelBoard/AlertsView.swift @@ -154,20 +154,20 @@ struct AlertsView: View { .foregroundStyle(.secondary) } } header: { - Text("Cheapest-station alerts") + 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.") } Section { - Toggle("Cheapest-favourite price-drop alerts", isOn: $favouriteDropEnabled) + Toggle("Cheapest-favourite", isOn: $favouriteDropEnabled) Picker("Fuel", selection: $favouriteDropFuel) { ForEach(FuelType.allCases) { fuel in Text(fuel.displayName).tag(fuel) } } } header: { - Text("Favourite price-drop alerts") + Text("Price-drop alerts") } footer: { Text("Watches your cheapest saved favourite for the fuel you pick here. FuelBoard alerts when a different favourite becomes the cheapest, or when your current cheapest favourite drops by at least 1.0p. This is separate from the nearby-geofence alert, so you can monitor favourites without extra location noise.") }