diff --git a/src/dispatch/case/flows.py b/src/dispatch/case/flows.py index 0aa1ed6b0176..e64d4edf03ae 100644 --- a/src/dispatch/case/flows.py +++ b/src/dispatch/case/flows.py @@ -191,17 +191,15 @@ def case_new_create_flow( case=case, db_session=db_session ) - if create_resources: - case_create_resources_flow( - db_session=db_session, - case_id=case.id, - individual_participants=individual_participants, - team_participants=team_participants, - conversation_target=conversation_target, - ) - else: - # we still want to update the ticket, but not twice if resources are created - ticket_flows.update_case_ticket(case=case, db_session=db_session) + case_create_resources_flow( + db_session=db_session, + case_id=case.id, + individual_participants=individual_participants, + team_participants=team_participants, + conversation_target=conversation_target, + ) + # we still want to update the ticket, but not twice if resources are created + ticket_flows.update_case_ticket(case=case, db_session=db_session) if case.case_priority.page_assignee: if not service_id: