🐛 Trying to fix something

This commit is contained in:
2025-11-30 01:38:32 +08:00
parent f236e818af
commit 01dcf193dd
4 changed files with 18 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
<template>
<naive-config>
<n-global-style />
<n-dialog-provider>
<n-notification-provider>
<naive-notification />

View File

@@ -41,6 +41,7 @@
import IconLight from "~/assets/images/cloudy-lamb.png"
import type { MenuOption } from "naive-ui"
import { NIcon } from "naive-ui"
import { computed, h } from "vue"
import { useRouter, useRoute, RouterLink } from "vue-router"
import {

View File

@@ -61,7 +61,7 @@ export const useUserStore = defineStore("user", () => {
console.error("Failed to fetch user... ", e)
}
console.log(`[UserStore] Logged as @${user.value!.name}`)
// console.log(`[UserStore] Logged as @${user.value!.name}`)
} finally {
isLoading.value = false
currentFetchPromise.value = null