fix: 🐛 Fix dev breaking when signed out

This commit is contained in:
Jesse Wierzbinski 2025-07-11 05:05:20 +02:00
parent 53b71afdd5
commit f8e219889c
3 changed files with 5 additions and 5 deletions

View file

@ -9,7 +9,7 @@
</SidebarProvider>
<MobileNavbar v-if="identity" />
<Preferences />
<ComposerDialog />
<ComposerDialog v-if="identity" />
</template>
<script setup lang="ts">

View file

@ -1,8 +1,8 @@
<template>
<slot />
<ComposerDialog />
<ComposerDialog v-if="identity" />
</template>
<script lang="ts" setup>
import ComposerDialog from "~/components/composer/dialog.vue";
</script>
</script>