From 0822c7b93a2f683fa2836a757226dda69796fb40 Mon Sep 17 00:00:00 2001 From: Dave Nicolson Date: Sat, 9 Sep 2023 18:18:45 +0200 Subject: [PATCH] Fix username keyboard input --- Shared/Settings/AccountForm.swift | 4 ++++ 1 file changed, 4 insertions(+) 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)