From 64d99b046f38b59cf240cb3137748c88ef039822 Mon Sep 17 00:00:00 2001 From: Joshua T Date: Fri, 15 Oct 2021 14:12:16 +0530 Subject: [PATCH] Skip deepsource false positive (#1060) --- 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 c490d8de81..316578a9ef 100644 --- a/frontend/src/_helpers/appUtils.js +++ b/frontend/src/_helpers/appUtils.js @@ -67,7 +67,7 @@ export async function executeActionsForEventId(_ref, eventId, component, mode) { const filteredEvents = events.filter((event) => event.eventId === eventId); for (const event of filteredEvents) { - await executeAction(_ref, event, mode); + await executeAction(_ref, event, mode); // skipcq: JS-0032 } }