fix. useTokenValidation 수정

This commit is contained in:
clkim
2025-11-04 21:13:35 +09:00
parent 80e464902c
commit e76ac480b7
7 changed files with 147 additions and 76 deletions

View File

@@ -69,7 +69,7 @@ const handleClick = () => {
validateLauncher()
return
}
if (props.platform === 'stove') {
if (props.platform === 'stove' && !isDuplication.value) {
const stoveClientDownloadUrl = runtimeConfig.public.stoveClientDownloadUrl
location.href = stoveClientDownloadUrl
return

View File

@@ -14,6 +14,8 @@ const props = withDefaults(defineProps<props>(), {
const emit = defineEmits(['confirmButtonEvent'])
const { tm } = useI18n()
const isOpen = defineModel<boolean>('isOpen', { default: false })
const setButtonEvent = (event?: () => void | void) => {
@@ -49,7 +51,7 @@ const handleOutsideClick = () => {
<AtomsButtonVariant
@click="setButtonEvent(() => emit('confirmButtonEvent'))"
>
{{ props.confirmButtonText || '확인' }}
{{ props.confirmButtonText || tm('Text_Confirm') }}
</AtomsButtonVariant>
</div>
</div>

View File

@@ -15,6 +15,8 @@ const props = withDefaults(defineProps<props>(), {
const emit = defineEmits(['cancelButtonEvent', 'confirmButtonEvent'])
const { tm } = useI18n()
const isOpen = defineModel<boolean>('isOpen', { default: false })
const setButtonEvent = (event?: () => void) => {
@@ -51,12 +53,12 @@ const handleOutsideClick = () => {
variant="outlined"
@click="setButtonEvent(() => emit('cancelButtonEvent'))"
>
{{ props.cancelButtonText || '취소' }}
{{ props.cancelButtonText || tm('Text_Cancel') }}
</AtomsButtonVariant>
<AtomsButtonVariant
@click="setButtonEvent(() => emit('confirmButtonEvent'))"
>
{{ props.confirmButtonText || '확인' }}
{{ props.confirmButtonText || tm('Text_Confirm') }}
</AtomsButtonVariant>
</div>
</div>