From e8a629d1a740af1871ec0e151f266a51bcae2b0f Mon Sep 17 00:00:00 2001 From: Anton Yarmolenko <37253+rnr@users.noreply.github.com> Date: Tue, 17 Dec 2024 12:30:07 +0100 Subject: [PATCH] chore: disabled autocapitalization for TextField --- Core/Core/View/Base/SecureInputView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Core/Core/View/Base/SecureInputView.swift b/Core/Core/View/Base/SecureInputView.swift index 872c1f74c..7d68fa23c 100644 --- a/Core/Core/View/Base/SecureInputView.swift +++ b/Core/Core/View/Base/SecureInputView.swift @@ -24,6 +24,7 @@ public struct SecureInputView: View { SecureField("", text: $text) } else { TextField("", text: $text) + .autocapitalization(.none) } }.padding(.trailing, 32)