diff --git a/src/registrar/utility/admin_helpers.py b/src/registrar/utility/admin_helpers.py index c3896dcc9..81a5c86ee 100644 --- a/src/registrar/utility/admin_helpers.py +++ b/src/registrar/utility/admin_helpers.py @@ -22,11 +22,7 @@ def get_action_needed_reason_default_email(request, domain_request, action_neede if not action_needed_reason or action_needed_reason == DomainRequest.ActionNeededReasons.OTHER: return None - if flag_is_active(request, "profile_feature"): # type: ignore - recipient = domain_request.creator - else: - recipient = domain_request.submitter - + recipient = domain_request.creator # Return the context of the rendered views context = {"domain_request": domain_request, "recipient": recipient}