fix: imports

This commit is contained in:
Shivam Mishra
2024-08-23 14:26:53 +05:30
parent 323cc41b25
commit 57c23857ea
8 changed files with 10 additions and 10 deletions
@@ -8,7 +8,7 @@ import {
CMD_SEND_TRANSCRIPT,
CMD_SNOOZE_CONVERSATION,
CMD_UNMUTE_CONVERSATION,
} from './commandBarBusEvents';
} from './events';
import {
ICON_MUTE_CONVERSATION,
@@ -17,7 +17,7 @@ import {
ICON_SEND_TRANSCRIPT,
ICON_SNOOZE_CONVERSATION,
ICON_UNMUTE_CONVERSATION,
} from './CommandBarIcons';
} from './icons';
const SNOOZE_OPTIONS = wootConstants.SNOOZE_OPTIONS;
@@ -3,8 +3,8 @@ import { useI18n } from 'dashboard/composables/useI18n';
import { useRoute } from 'dashboard/composables/route';
import wootConstants from 'dashboard/constants/globals';
import { CMD_SNOOZE_NOTIFICATION } from './helper/events';
import { ICON_SNOOZE_NOTIFICATION } from './helper/icons';
import { CMD_SNOOZE_NOTIFICATION } from './helpers/events';
import { ICON_SNOOZE_NOTIFICATION } from './helpers/icons';
import { emitter } from 'shared/helpers/mitt';
import { isAInboxViewRoute } from 'dashboard/helper/routeHelpers';