From a71b7ae20ebd6586562098cb8c9e3c6bc88d58d5 Mon Sep 17 00:00:00 2001 From: FuelBoard Contributor Date: Fri, 28 Aug 2026 17:48:51 +0100 Subject: [PATCH] Siri: remove Apple from App Intent descriptions --- FuelBoard/SiriShortcuts.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/FuelBoard/SiriShortcuts.swift b/FuelBoard/SiriShortcuts.swift index 36809af..4984f7f 100644 --- a/FuelBoard/SiriShortcuts.swift +++ b/FuelBoard/SiriShortcuts.swift @@ -125,7 +125,7 @@ struct CheapestFuelIntent: AppIntent { struct DirectionsToCheapestFuelIntent: AppIntent { static var title: LocalizedStringResource = "Directions to Cheapest Fuel Near Me" static var description = IntentDescription( - "Opens Apple Maps directions to the cheapest station selling a fuel near you, using the latest cached prices." + "Opens directions to the cheapest station selling a fuel near you, using the latest cached prices." ) @Parameter(title: "Fuel") @@ -285,7 +285,7 @@ struct FavouriteFuelPriceIntent: AppIntent { struct DirectionsToFavouriteFuelIntent: AppIntent { static var title: LocalizedStringResource = "Directions to Favourite Fuel Station" static var description = IntentDescription( - "Opens Apple Maps directions to your top favourite station for a fuel." + "Opens directions to your top favourite station for a fuel." ) @Parameter(title: "Fuel") @@ -404,7 +404,7 @@ struct FuelMessage: View { /// Shortcut slot and adds no phrase. struct OpenDirectionsIntent: AppIntent { static var title: LocalizedStringResource = "Directions" - static var description = IntentDescription("Opens Apple Maps directions to the station.") + static var description = IntentDescription("Opens directions to the station.") static var isDiscoverable: Bool = false @Parameter var stationName: String