fix: actions with debounce are not working (#10196)

This commit is contained in:
Kavin Venkatachalam 2024-06-26 16:05:37 +05:30 committed by GitHub
parent 7a6f12473c
commit 6fc796e454
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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);
}
}