fixed incorrect account status evaluation

This commit is contained in:
2025-12-02 20:31:01 -05:00
parent 26fd323f43
commit c537ef9b60
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ export function useAuth() {
const userStore = useUserStore();
// Account status control
const accountStatus = userStore.state;
const accountStatus = computed(() => userStore.state);
// RBAC
const roles = computed<string[]>(() => {