From bbe43a6149b1399abf50c7633857b83d9731829a Mon Sep 17 00:00:00 2001 From: FuelBoard Contributor Date: Thu, 13 Aug 2026 10:35:18 +0100 Subject: [PATCH] Onboarding: Local Network confirmation matches other pages Granted label now reads just 'Connected' with the green tick and uses the same .subheadline confirmation styling as the Location and Notifications pages. --- FuelBoard/OnboardingView.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/FuelBoard/OnboardingView.swift b/FuelBoard/OnboardingView.swift index 6721834..6ee24af 100644 --- a/FuelBoard/OnboardingView.swift +++ b/FuelBoard/OnboardingView.swift @@ -229,8 +229,10 @@ struct OnboardingView: View { .foregroundStyle(.secondary) } } else if prompter.dataGranted { - Label("Connected — prices will load", systemImage: "checkmark.circle.fill") + // Same confirmation styling as the Location/Notifications pages. + Label("Connected", systemImage: "checkmark.circle.fill") .foregroundStyle(.green) + .font(.subheadline) } else if prompter.dataDenied { Text("Local network access was denied — prices won't load until it's allowed, but you can keep using FuelBoard.") .font(.footnote)