Skip to content

Commit

Permalink
Fix state required field on domain management
Browse files Browse the repository at this point in the history
  • Loading branch information
rachidatecs committed Jul 25, 2024
1 parent 2c4c528 commit bf031e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/registrar/forms/domain.py
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ class Meta:
# the database fields have blank=True so ModelForm doesn't create
# required fields by default. Use this list in __init__ to mark each
# of these fields as required
required = ["organization_name", "address_line1", "city", "zipcode"]
required = ["organization_name", "address_line1", "city", "state_territory", "zipcode"]

def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
Expand Down

0 comments on commit bf031e1

Please sign in to comment.