From c5b18a244049e6795d6decfc9976fca8a331ac8a Mon Sep 17 00:00:00 2001 From: Angelo Stavrow Date: Mon, 17 Aug 2020 13:10:56 -0400 Subject: [PATCH] Use standard keyboard for username entry --- Shared/Account/AccountLoginView.swift | 1 - 1 file changed, 1 deletion(-) diff --git a/Shared/Account/AccountLoginView.swift b/Shared/Account/AccountLoginView.swift index 274eb45..1679c06 100644 --- a/Shared/Account/AccountLoginView.swift +++ b/Shared/Account/AccountLoginView.swift @@ -13,7 +13,6 @@ struct AccountLoginView: View { .foregroundColor(.gray) #if os(iOS) TextField("Username", text: $account.username) - .keyboardType(.emailAddress) .autocapitalization(.none) .disableAutocorrection(true) .textFieldStyle(RoundedBorderTextFieldStyle())