diff --git a/src/registrar/views/application.py b/src/registrar/views/application.py index c183457b5..6c494b203 100644 --- a/src/registrar/views/application.py +++ b/src/registrar/views/application.py @@ -540,6 +540,11 @@ class Review(ApplicationWizard): context = super().get_context_data() context["Step"] = Step.__members__ context["application"] = self.application + # if application has no other contacts, need to change title of Step.OTHER_CONTACTS + if not self.application.has_other_contacts(): + titles = context["form_titles"] + titles[Step.OTHER_CONTACTS] = _("No other employees from your organization?") + context["form_titles"] = titles return context def goto_next_step(self):