From f08029643bc0d6491522f81d4fb9b1510ea91697 Mon Sep 17 00:00:00 2001 From: Satindar Dhillon Date: Tue, 2 Aug 2022 09:34:37 -0700 Subject: [PATCH] use newPassword for text field type on sign up form (iOS) --- .../App/Views/Registration/EmailAuth/EmailSignupFormView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apple/OmnivoreKit/Sources/App/Views/Registration/EmailAuth/EmailSignupFormView.swift b/apple/OmnivoreKit/Sources/App/Views/Registration/EmailAuth/EmailSignupFormView.swift index fcedb925e..73e481a44 100644 --- a/apple/OmnivoreKit/Sources/App/Views/Registration/EmailAuth/EmailSignupFormView.swift +++ b/apple/OmnivoreKit/Sources/App/Views/Registration/EmailAuth/EmailSignupFormView.swift @@ -110,7 +110,7 @@ struct EmailSignupFormView: View { .font(.appFootnote) .foregroundColor(.appGrayText) SecureField("", text: $password) - .textContentType(.password) + .textContentType(.newPassword) .textInputAutocapitalization(.never) .disableAutocorrection(true) .focused($focusedField, equals: .password)