From 491569fa4f3516645b0aae15bea685017cc2834d Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Tue, 9 Dec 2025 17:09:04 +0530 Subject: [PATCH] chore: revert redundant change --- app/javascript/dashboard/helper/actionCable.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/javascript/dashboard/helper/actionCable.js b/app/javascript/dashboard/helper/actionCable.js index 4220c59b8..d19fd14fb 100644 --- a/app/javascript/dashboard/helper/actionCable.js +++ b/app/javascript/dashboard/helper/actionCable.js @@ -51,9 +51,7 @@ class ActionCableConnector extends BaseActionCableConnector { }; isAValidEvent = data => { - // eslint-disable-next-line no-underscore-dangle - const currentAccountId = this.app.$store.getters.getCurrentAccountId; - return currentAccountId === data.account_id; + return this.app.$store.getters.getCurrentAccountId === data.account_id; }; onMessageUpdated = data => {