fix. 테스트용 코드 제거

This commit is contained in:
clkim
2025-11-13 17:47:52 +09:00
parent 41ae618a5f
commit 43e32a9268
2 changed files with 0 additions and 8 deletions

View File

@@ -58,10 +58,6 @@ const handlePagination = (page: number) => {
currentPage.value = page
emits('update:page', page)
}
onMounted(() => {
console.log(blocks.value)
})
</script>
<template>

View File

@@ -48,10 +48,6 @@ const checkLoginValidation = async () => {
const validateTokenResult = await handleTokenValidation(
accessToken.value || ''
)
console.log(
'🚀 ~ checkLoginValidation ~ validateTokenResult:',
validateTokenResult
)
isLogin.value = validateTokenResult
}