From 6fc796e4548d9ee6ddaab497f28b72de10966940 Mon Sep 17 00:00:00 2001 From: Kavin Venkatachalam <50441969+kavinvenkatachalam@users.noreply.github.com> Date: Wed, 26 Jun 2024 16:05:37 +0530 Subject: [PATCH] fix: actions with debounce are not working (#10196) --- frontend/src/_helpers/appUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }