diff --git a/client/src/components/Masthead/Masthead.vue b/client/src/components/Masthead/Masthead.vue index 21a26bc7b6d7..21f44f39fe72 100644 --- a/client/src/components/Masthead/Masthead.vue +++ b/client/src/components/Masthead/Masthead.vue @@ -6,7 +6,7 @@ import { withPrefix } from "utils/redirect"; import { onBeforeMount, onMounted, reactive, ref, watch } from "vue"; import { useRoute } from "vue-router/composables"; -import { isConfigLoaded, useConfig } from "@/composables/config"; +import { useConfig } from "@/composables/config"; import { useUserStore } from "@/stores/userStore"; import { loadWebhookMenuItems } from "./_webhooks"; @@ -19,7 +19,7 @@ import NotificationsBell from "@/components/Notifications/NotificationsBell.vue" const { isAnonymous, showActivityBar } = storeToRefs(useUserStore()); const route = useRoute(); -const { config } = useConfig(); +const { config, isConfigLoaded } = useConfig(); const emit = defineEmits(["open-url"]);