diff --git a/src/registrar/forms/application_wizard.py b/src/registrar/forms/application_wizard.py index 5310c4610..ffdce7add 100644 --- a/src/registrar/forms/application_wizard.py +++ b/src/registrar/forms/application_wizard.py @@ -329,10 +329,6 @@ class AuthorizingOfficialForm(RegistrarForm): label="First name / given name", error_messages={"required": ("Enter the first name / given name of your authorizing official.")}, ) - middle_name = forms.CharField( - required=False, - label="Middle name (optional)", - ) last_name = forms.CharField( label="Last name / family name", error_messages={"required": ("Enter the last name / family name of your authorizing official.")}, @@ -350,10 +346,6 @@ class AuthorizingOfficialForm(RegistrarForm): label="Email", error_messages={"invalid": ("Enter an email address in the required format, like name@example.com.")}, ) - phone = PhoneNumberField( - label="Phone", - error_messages={"required": "Enter the phone number for your authorizing official."}, - ) class CurrentSitesForm(RegistrarForm):