diff --git a/src/registrar/forms/application_wizard.py b/src/registrar/forms/application_wizard.py index 7312fafc4..8aa528d3d 100644 --- a/src/registrar/forms/application_wizard.py +++ b/src/registrar/forms/application_wizard.py @@ -170,14 +170,10 @@ class TribalGovernmentForm(RegistrarForm): ) tribe_name = forms.CharField( - label1="What is the name of the tribe you represent? ", - label2="*", - label={label1+label2}, + label="What is the name of the tribe you represent? ", error_messages={"required": "Enter the tribe you represent."}, ) - tribe_name.widget.attrs.update({"class": "no_asterisk"}) - def clean(self): """Needs to be either state or federally recognized.""" if not (self.cleaned_data["federally_recognized_tribe"] or self.cleaned_data["state_recognized_tribe"]): diff --git a/src/registrar/templates/django/forms/label.html b/src/registrar/templates/django/forms/label.html index 9a6fcad69..6924c1155 100644 --- a/src/registrar/templates/django/forms/label.html +++ b/src/registrar/templates/django/forms/label.html @@ -7,9 +7,10 @@ {% else %} {{ field.label }} {% endif %} - +