From 8a589a35c197b3dae0fe01411c7a55c437fa6557 Mon Sep 17 00:00:00 2001 From: FuelBoard Contributor Date: Fri, 14 Aug 2026 20:56:01 +0100 Subject: [PATCH] =?UTF-8?q?Settings:=20drop=20parenthesized=20example=20fi?= =?UTF-8?q?gures=20from=20Price=20display=20segmented=20buttons=20?= =?UTF-8?q?=E2=80=94=20'Station=20sign'=20/=20'Pounds=20&=20pence'=20(clea?= =?UTF-8?q?ner,=20roomier=20labels)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Shared/FuelStore.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shared/FuelStore.swift b/Shared/FuelStore.swift index d31fbdc..db19af9 100644 --- a/Shared/FuelStore.swift +++ b/Shared/FuelStore.swift @@ -158,8 +158,8 @@ enum PriceDisplayStyle: String, Codable, CaseIterable, Identifiable { var displayName: String { switch self { - case .stationSign: return "Station sign (129.9)" - case .poundsPence: return "Pounds & pence (£1.29⁹)" + case .stationSign: return "Station sign" + case .poundsPence: return "Pounds & pence" } } }