Add required fix for state

This commit is contained in:
Rebecca Hsieh 2025-03-05 12:36:11 -08:00
parent ece1bc5129
commit 39b05a8fe1
No known key found for this signature in database

View file

@ -348,7 +348,7 @@ class OrganizationContactForm(RegistrarForm):
error_messages={
"required": ("Select the state, territory, or military post where your organization is located.")
},
widget=ComboboxWidget,
widget=ComboboxWidget(attrs={"required": True}),
)
zipcode = forms.CharField(
label="Zip code",