diff --git a/frontend/src/_helpers/appUtils.js b/frontend/src/_helpers/appUtils.js index 49375dd705..0eff11a45e 100644 --- a/frontend/src/_helpers/appUtils.js +++ b/frontend/src/_helpers/appUtils.js @@ -412,7 +412,7 @@ export async function executeActionsForEventId(_ref, eventId, events = [], mode, const filteredEvents = events?.filter((event) => event?.event.eventId === eventId)?.sort((a, b) => a.index - b.index); for (const event of filteredEvents) { - await executeActionWithDebounce(_ref, event.event, mode, customVariables); + await executeAction(_ref, event.event, mode, customVariables); } }