diff --git a/src/registrar/forms/domain_request_wizard.py b/src/registrar/forms/domain_request_wizard.py index 0ec0c6dac..255eff332 100644 --- a/src/registrar/forms/domain_request_wizard.py +++ b/src/registrar/forms/domain_request_wizard.py @@ -152,13 +152,13 @@ def form_is_checked(self): Determines the initial checked state of the form based on the domain_request's attributes. """ - if ( + if self.domain_request.is_suborganization(): + return True + elif ( self.domain_request.portfolio and self.domain_request.organization_name == self.domain_request.portfolio.organization_name ): return False - elif self.domain_request.is_suborganization(): - return True else: return None