From dfdfe195fd5ffbf2ae4541cdbbaa33fcaf583835 Mon Sep 17 00:00:00 2001 From: AricRedemption Date: Thu, 28 Mar 2024 21:20:08 +0800 Subject: [PATCH] fix: Corrected inscribe API error loading state and optimized auth page icon display --- src/background.ts | 1 - src/components/LoadingIcon.vue | 1 - src/pages/authorize/Index.vue | 2 +- src/pages/authorize/Inscribe.vue | 3 ++- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/background.ts b/src/background.ts index 2b4fd36..1ffccb1 100644 --- a/src/background.ts +++ b/src/background.ts @@ -12,7 +12,6 @@ browser.runtime.onMessage.addListener(async (msg, sender) => { if (msg.channel === 'to-bg') { if (msg.eventName === 'networkChanged') { network.value = msg.args[0] - console.log('network', network.value) } return } diff --git a/src/components/LoadingIcon.vue b/src/components/LoadingIcon.vue index 54e19c2..d4a702b 100644 --- a/src/components/LoadingIcon.vue +++ b/src/components/LoadingIcon.vue @@ -3,7 +3,6 @@ const props = defineProps<{ class?: string }>() -console.log(props)