fix: imports

This commit is contained in:
Shivam Mishra
2024-08-23 14:39:06 +05:30
parent c8aa34866d
commit 16339e520f
11 changed files with 16 additions and 16 deletions
@@ -13,7 +13,7 @@ import wootConstants from 'dashboard/constants/globals';
import {
CMD_REOPEN_CONVERSATION,
CMD_RESOLVE_CONVERSATION,
} from 'dashboard/helper/CommandBar/events';
} from 'dashboard/helper/commandBar/events';
const store = useStore();
const getters = useStoreGetters();
@@ -7,7 +7,7 @@ import { useKeyboardEvents } from 'dashboard/composables/useKeyboardEvents';
import { useAI } from 'dashboard/composables/useAI';
import AICTAModal from './AICTAModal.vue';
import AIAssistanceModal from './AIAssistanceModal.vue';
import { CMD_AI_ASSIST } from 'dashboard/helper/CommandBar/events';
import { CMD_AI_ASSIST } from 'dashboard/helper/commandBar/events';
import AIAssistanceCTAButton from './AIAssistanceCTAButton.vue';
export default {
@@ -7,7 +7,7 @@ import {
CMD_MUTE_CONVERSATION,
CMD_SEND_TRANSCRIPT,
CMD_UNMUTE_CONVERSATION,
} from 'dashboard/helper/CommandBar/events';
} from 'dashboard/helper/commandBar/events';
export default {
components: {
@@ -6,7 +6,7 @@ import {
CMD_BULK_ACTION_SNOOZE_CONVERSATION,
CMD_BULK_ACTION_REOPEN_CONVERSATION,
CMD_BULK_ACTION_RESOLVE_CONVERSATION,
} from 'dashboard/helper/CommandBar/events';
} from 'dashboard/helper/commandBar/events';
import AgentSelector from './AgentSelector.vue';
import UpdateActions from './UpdateActions.vue';