diff --git a/FuelBoard/AlertsView.swift b/FuelBoard/AlertsView.swift index bd09276..956b9f7 100644 --- a/FuelBoard/AlertsView.swift +++ b/FuelBoard/AlertsView.swift @@ -180,7 +180,7 @@ struct AlertsView: View { } Section { - Toggle("Live Activity", isOn: $liveActivityEnabled) + Toggle("Cheapest station", isOn: $liveActivityEnabled) Picker("Fuel", selection: $liveActivityFuel) { ForEach(FuelType.allCases) { fuel in Text(fuel.displayName).tag(fuel) @@ -193,7 +193,7 @@ struct AlertsView: View { } } } header: { - Text("Cheapest station") + Text("Live Activity") } footer: { Text("Shows the cheapest station for the fuel and distance you pick here on the Lock Screen and Dynamic Island — independent of the Stations tab (choose Follow search to mirror its distance instead). Updates as you drive; tap to open directions. Live Activities can be disabled in System Settings → Live Activities.") }