diff --git a/src/stores/modal.js b/src/stores/modal.js index 71bb056..ac8a738 100644 --- a/src/stores/modal.js +++ b/src/stores/modal.js @@ -1,6 +1,5 @@ import { defineStore } from 'pinia'; import { MODAL_ACCT_INFO, } from '@/constants/constants.js'; -import { delaySecond } from "@/utils/timeUtil.js"; export const useModalStore = defineStore('modalStore', { state: () => ({ @@ -13,7 +12,6 @@ export const useModalStore = defineStore('modalStore', { this.whichModal = whichModal; }, async closeModal(){ - await delaySecond(2); this.isModalOpen = false; }, },