diff --git a/src/registrar/forms/domain_request_wizard.py b/src/registrar/forms/domain_request_wizard.py index a7d487b40..71839b5f6 100644 --- a/src/registrar/forms/domain_request_wizard.py +++ b/src/registrar/forms/domain_request_wizard.py @@ -446,7 +446,7 @@ class SeniorOfficialForm(RegistrarForm): error_messages={"required": ("Enter the last name / family name of your senior official.")}, ) title = forms.CharField( - label="Title or role in your organization", + label="Title or role", error_messages={ "required": ( "Enter the title or role your senior official has in your" @@ -664,10 +664,10 @@ class OtherContactsForm(RegistrarForm): error_messages={"required": "Enter the last name / family name of this contact."}, ) title = forms.CharField( - label="Title or role in your organization", + label="Title or role", error_messages={ "required": ( - "Enter the title or role in your organization of this contact (e.g., Chief Information Officer)." + "Enter the title or role of this contact in your organization (e.g., Chief Information Officer)." ) }, )