fix. 사전등록 로직 수정

This commit is contained in:
clkim
2025-11-07 16:29:44 +09:00
parent b5f723397b
commit bcbc7e9c6d
5 changed files with 500 additions and 582 deletions

View File

@@ -39,9 +39,9 @@ const OS_TYPE_MAP: Record<string, Platform[]> = {
'3': ['google_play', 'app_store'],
}
const preregistModalRef = ref<{ handlePreregist: () => Promise<void> } | null>(
null
)
const preregistModalRef = ref<{
handleOpenPreregist: () => Promise<void>
} | null>(null)
// Preregist Section
const preregistCode = computed(
@@ -209,7 +209,7 @@ const splideOptions = computed(() => {
// Handler
const handlePreregistClick = () => {
preregistModalRef.value?.handlePreregist()
preregistModalRef.value?.handleOpenPreregist()
}
</script>