From e27acb2e9303fbd44c246ede37bd25dca6a72b42 Mon Sep 17 00:00:00 2001 From: CocoByte Date: Tue, 20 Feb 2024 16:10:54 -0700 Subject: [PATCH] Made "required" error message match "invalid" error message for zip code on Organization name and mailing address --- src/registrar/forms/application_wizard.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/registrar/forms/application_wizard.py b/src/registrar/forms/application_wizard.py index 1ee7e0036..a76626b1e 100644 --- a/src/registrar/forms/application_wizard.py +++ b/src/registrar/forms/application_wizard.py @@ -284,6 +284,9 @@ class OrganizationContactForm(RegistrarForm): message="Enter a zip code in the form of 12345 or 12345-6789.", ) ], + error_messages={ + "required": ("Enter a zip code in the form of 12345 or 12345-6789.") + }, ) urbanization = forms.CharField( required=False,