fix(frontend): Use correct name for user store

This commit is contained in:
2025-11-17 13:11:42 +01:00
parent ab50f2bd6d
commit 6f15712c28

View File

@@ -1,9 +1,9 @@
import type { Organization } from '~~/types/keycloak'
export const useUserStore = defineStore('Organization', () => {
export const useUserStore = defineStore('User', () => {
const { user } = useUserSession()
const _selectedOrganization = ref<Organization | null>(null)
const selectedOrganization = computed<Organization | null>({
get: () => {
if (_selectedOrganization.value) {