Navbar-Rework #50

Merged
Ajdj100 merged 7 commits from Navbar-Rework into main 2025-12-03 16:57:57 -06:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit c537ef9b60 - Show all commits

View File

@@ -47,7 +47,7 @@ function blurAfter() {
<img src="/17RBN_Logo.png" class="w-10 h-10 object-contain"></img>
</RouterLink>
<!-- Member navigation -->
<div v-if="auth.accountStatus == 'member'" class="h-15 flex items-center justify-center">
<div v-if="auth.accountStatus.value == 'member'" class="h-15 flex items-center justify-center">
<NavigationMenu>
<NavigationMenuList class="gap-3">

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[]>(() => {