Skip to content

Commit

Permalink
πŸ› avoid a 500
Browse files Browse the repository at this point in the history
  • Loading branch information
acidjazz committed Sep 3, 2024
1 parent 7a90fab commit 34c6488
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/components/header/HeaderMain.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<script setup lang="ts">
const { crumbs, actions } = useCrumb()
const { loggedIn } = useUserSession()
</script>

<template>
Expand All @@ -12,7 +13,7 @@ const { crumbs, actions } = useCrumb()
</template>
<template #right>
<div class="flex items-center space-x-2">
<header-profile />
<header-profile v-if="loggedIn" />
<u-color-mode-button />
</div>
</template>
Expand Down

0 comments on commit 34c6488

Please sign in to comment.