From 901e487bf5ac405b8ab5a59a1d0652e9a9d375cf Mon Sep 17 00:00:00 2001 From: Abe Alam <143724440+abe-alam-ecs@users.noreply.github.com> Date: Tue, 10 Jun 2025 17:04:41 -0400 Subject: [PATCH] #3486: Update "Title or role in your organization" field label - [aa] (#3864) * title or role updates V1 * updated error message for OtherContactsForm * Correcting user_profile.py --- src/registrar/forms/domain_request_wizard.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)." ) }, )