From 7647951dd35ba1d3c0603c5e66c8454e974e21f9 Mon Sep 17 00:00:00 2001 From: ImLukeF <92253590+ImLukeF@users.noreply.github.com> Date: Sat, 21 Mar 2026 11:40:17 +1100 Subject: [PATCH] fix: secure gateway auth token entry --- apps/ios/Sources/Onboarding/OnboardingWizardView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/ios/Sources/Onboarding/OnboardingWizardView.swift b/apps/ios/Sources/Onboarding/OnboardingWizardView.swift index 207bd35d6cd..ce5362264ca 100644 --- a/apps/ios/Sources/Onboarding/OnboardingWizardView.swift +++ b/apps/ios/Sources/Onboarding/OnboardingWizardView.swift @@ -607,7 +607,7 @@ struct OnboardingWizardView: View { private var authStep: some View { Group { Section("Authentication") { - TextField("Gateway Auth Token", text: self.$gatewayToken) + SecureField("Gateway Auth Token", text: self.$gatewayToken) .textInputAutocapitalization(.never) .autocorrectionDisabled() SecureField("Gateway Password", text: self.$gatewayPassword)