From 2d413c865c9507ec887f4bcaef8d8908c44a21c7 Mon Sep 17 00:00:00 2001 From: clkim Date: Thu, 6 Nov 2025 15:31:42 +0900 Subject: [PATCH] =?UTF-8?q?fix.=20=EB=AA=A8=EB=8B=AC=20=EB=94=A4=EB=93=9C?= =?UTF-8?q?=20=EA=B8=B0=EB=B3=B8=EA=B0=92=20true=EB=A1=9C=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- layers/components/blocks/modal/Alert.vue | 2 +- layers/components/blocks/modal/Confirm.vue | 2 +- layers/components/blocks/modal/Layer.vue | 2 +- layers/composables/useTokenValidation.ts | 1 - layers/stores/useModalStore.ts | 4 ++-- 5 files changed, 5 insertions(+), 6 deletions(-) diff --git a/layers/components/blocks/modal/Alert.vue b/layers/components/blocks/modal/Alert.vue index 9c7c616..e2da05f 100644 --- a/layers/components/blocks/modal/Alert.vue +++ b/layers/components/blocks/modal/Alert.vue @@ -8,7 +8,7 @@ interface props { } const props = withDefaults(defineProps(), { - isShowDimmed: false, + isShowDimmed: true, isOutsideClose: false, }) diff --git a/layers/components/blocks/modal/Confirm.vue b/layers/components/blocks/modal/Confirm.vue index 611b749..15aacd2 100644 --- a/layers/components/blocks/modal/Confirm.vue +++ b/layers/components/blocks/modal/Confirm.vue @@ -9,7 +9,7 @@ interface props { } const props = withDefaults(defineProps(), { - isShowDimmed: false, + isShowDimmed: true, isOutsideClose: false, }) diff --git a/layers/components/blocks/modal/Layer.vue b/layers/components/blocks/modal/Layer.vue index c4d1c34..cd3c010 100644 --- a/layers/components/blocks/modal/Layer.vue +++ b/layers/components/blocks/modal/Layer.vue @@ -8,7 +8,7 @@ interface props { } const props = withDefaults(defineProps(), { - isShowDimmed: false, + isShowDimmed: true, isOutsideClose: false, }) diff --git a/layers/composables/useTokenValidation.ts b/layers/composables/useTokenValidation.ts index c0db1b8..ba07dad 100644 --- a/layers/composables/useTokenValidation.ts +++ b/layers/composables/useTokenValidation.ts @@ -26,7 +26,6 @@ export const useTokenValidation = () => { const showLoginModal = (alertKey: string) => { modalStore.handleOpenConfirm({ contentText: tm(alertKey), - isShowDimmed: true, confirmButtonText: tm('Text_StoveLogin'), confirmButtonEvent: () => { csrGoStoveLogin() diff --git a/layers/stores/useModalStore.ts b/layers/stores/useModalStore.ts index ae98e32..f17be70 100644 --- a/layers/stores/useModalStore.ts +++ b/layers/stores/useModalStore.ts @@ -23,7 +23,7 @@ export const useModalStore = defineStore('modalStore', () => { } const handleOpenAlert = ({ - isShowDimmed = false, + isShowDimmed = true, modalName = '', isOutsideClose = false, contentText, @@ -47,7 +47,7 @@ export const useModalStore = defineStore('modalStore', () => { } const handleOpenConfirm = ({ - isShowDimmed = false, + isShowDimmed = true, modalName = '', isOutsideClose = false, contentText,