diff --git a/plugin-hrm-form/src/components/customIntegrations/uscr/DispatchIncidentButton.tsx b/plugin-hrm-form/src/components/customIntegrations/uscr/DispatchIncidentButton.tsx index eacce63a84..20b7e19455 100644 --- a/plugin-hrm-form/src/components/customIntegrations/uscr/DispatchIncidentButton.tsx +++ b/plugin-hrm-form/src/components/customIntegrations/uscr/DispatchIncidentButton.tsx @@ -105,8 +105,7 @@ const DispatchIncidentButton: React.FC = ({ contactId }) => { const valid = await trigger(); if (valid) { await saveDraft(); - // We use a regular dispatch here because we handle the error from where it is called. - dispatch(newIncidentDispatchAction(savedContact)); + await dispatch(newIncidentDispatchAction(savedContact)); Notifications.showNotificationSingle(dispatchSuccessNotification); } } catch (err) {