From eb72fb481c18e93afff1747f12dc4da14ee469c1 Mon Sep 17 00:00:00 2001 From: ericholguin Date: Fri, 26 May 2023 19:45:14 -0600 Subject: [PATCH] createaccount: remove username from the form --- damus/Views/CreateAccountView.swift | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/damus/Views/CreateAccountView.swift b/damus/Views/CreateAccountView.swift index 48a67680..4c7f5f2f 100644 --- a/damus/Views/CreateAccountView.swift +++ b/damus/Views/CreateAccountView.swift @@ -38,17 +38,6 @@ struct CreateAccountView: View { } VStack { SignupForm { - FormLabel(NSLocalizedString("Username", comment: "Label to prompt username entry.")) - HStack(spacing: 0.0) { - Text(verbatim: "@") - .foregroundColor(.white) - .padding(.leading, -25.0) - - FormTextInput(NSLocalizedString("satoshi", comment: "Example username of Bitcoin creator(s), Satoshi Nakamoto."), text: $account.nick_name) - .autocorrectionDisabled(true) - .textInputAutocapitalization(.never) - - } FormLabel(NSLocalizedString("Display Name", comment: "Label to prompt display name entry."), optional: true) FormTextInput(NSLocalizedString("Satoshi Nakamoto", comment: "Name of Bitcoin creator(s)."), text: $account.real_name)