From 442375efc7eb2723bf92db6dc589cdcd414a0fdc Mon Sep 17 00:00:00 2001 From: Nic D Date: Mon, 9 Feb 2026 11:35:38 -0500 Subject: [PATCH] feat(layout): add username on header bar to mitigate account confusion on shared PCs that access app. --- .../components/main-layout-header-bar.vue | 24 ++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/src/layouts/components/main-layout-header-bar.vue b/src/layouts/components/main-layout-header-bar.vue index 5ad6d39..71c6eee 100644 --- a/src/layouts/components/main-layout-header-bar.vue +++ b/src/layouts/components/main-layout-header-bar.vue @@ -2,9 +2,11 @@ lang="ts" setup > - import { useUiStore } from 'src/stores/ui-store'; + import { useAuthStore } from 'src/stores/auth-store'; +import { useUiStore } from 'src/stores/ui-store'; const uiStore = useUiStore(); + const authStore = useAuthStore();