diff --git a/app/components/NavBar.vue b/app/components/NavBar.vue index d4e9d95..76f0ac5 100644 --- a/app/components/NavBar.vue +++ b/app/components/NavBar.vue @@ -33,14 +33,16 @@ - + import { ref, capitalize } from "vue"; +import { useSystemStore } from "~/stores/system"; const drawer = ref(false); const { data, status, signOut } = useAuth(); @@ -63,4 +66,9 @@ const logout = async () => { }; - +