Merge branch 'develop' into feat/update-editor

This commit is contained in:
Shivam Mishra
2024-06-03 13:04:37 +05:30
committed by GitHub
63 changed files with 418 additions and 246 deletions
@@ -1,4 +1,5 @@
import { getCurrentInstance } from 'vue';
import { emitter } from 'shared/helpers/mitt';
export const useTrack = () => {
const vm = getCurrentInstance();
@@ -8,5 +9,5 @@ export const useTrack = () => {
};
export function useAlert(message, action) {
bus.$emit('newToastMessage', message, action);
emitter.emit('newToastMessage', message, action);
}