From 41a035862834a3959606fb9746ae96d6010cb7e3 Mon Sep 17 00:00:00 2001 From: Vishnu Narayanan Date: Thu, 8 Feb 2024 20:42:02 +0530 Subject: [PATCH] chore: fix tests --- app/javascript/dashboard/helper/AnalyticsHelper/events.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/app/javascript/dashboard/helper/AnalyticsHelper/events.js b/app/javascript/dashboard/helper/AnalyticsHelper/events.js index aba812732..4b378c74a 100644 --- a/app/javascript/dashboard/helper/AnalyticsHelper/events.js +++ b/app/javascript/dashboard/helper/AnalyticsHelper/events.js @@ -103,7 +103,6 @@ export const GENERAL_EVENTS = Object.freeze({ COMMAND_BAR: 'Used commandbar', }); - export const INBOX_EVENTS = Object.freeze({ OPEN_CONVERSATION_VIA_INBOX: 'Opened conversation via inbox', MARK_NOTIFICATION_AS_READ: 'Marked notification as read', @@ -111,13 +110,10 @@ export const INBOX_EVENTS = Object.freeze({ MARK_NOTIFICATION_AS_UNREAD: 'Marked notification as unread', DELETE_NOTIFICATION: 'Deleted notification', DELETE_ALL_NOTIFICATIONS: 'Deleted all notifications', - }); export const SLA_EVENTS = Object.freeze({ CREATE: 'Created an SLA', UPDATE: 'Updated an SLA', DELETED: 'Deleted an SLA', - - }); - +});