From 5dedb7c29d686d94f1a5b3fc1a4293db92e28c84 Mon Sep 17 00:00:00 2001 From: Darrell Date: Wed, 21 Dec 2022 16:15:53 +0900 Subject: [PATCH] Disable autocomplete for username Closes #81 Changelog-Fixed: Disable autocorrection for username when creating account --- damus/Views/CreateAccountView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/damus/Views/CreateAccountView.swift b/damus/Views/CreateAccountView.swift index 9521e45..50c7326 100644 --- a/damus/Views/CreateAccountView.swift +++ b/damus/Views/CreateAccountView.swift @@ -47,6 +47,7 @@ struct CreateAccountView: View { .padding(.leading, -25.0) FormTextInput("satoshi", text: $account.nick_name) + .autocorrectionDisabled(true) .textInputAutocapitalization(.never) }