refactor: remove debug console log

This commit is contained in:
Tony Yang
2025-04-16 17:07:29 +08:00
parent f9f1dcb352
commit fd565f3133
+1 -5
View File
@@ -1,5 +1,5 @@
<script setup>
import { defineEmits, defineExpose, defineProps, watch, ref, onMounted, getCurrentInstance } from 'vue';
import { defineEmits, defineExpose, defineProps, watch, ref } from 'vue';
import VueHcaptcha from '@hcaptcha/vue3-hcaptcha';
import { RecaptchaV2, useRecaptcha } from "vue3-recaptcha-v2";
@@ -78,10 +78,6 @@ const reset = () => {
defineExpose({
reset,
});
onMounted(() => {
console.log(getCurrentInstance().appContext.config.globalProperties.$darkMode);
});
</script>
<template>