diff --git a/Shared/Settings/AccountForm.swift b/Shared/Settings/AccountForm.swift index 72ab0593..6e3d8ec2 100644 --- a/Shared/Settings/AccountForm.swift +++ b/Shared/Settings/AccountForm.swift @@ -81,6 +81,10 @@ struct AccountForm: View { @ViewBuilder var formFields: some View { TextField("Username", text: $username) + #if !os(macOS) + .autocapitalization(.none) + #endif + .disableAutocorrection(true) SecureField("Password", text: $password) #if os(tvOS)