Files
speckle-server/packages/frontend-2/components/singleton/Managers.vue
T
Kristaps Fabians Geikins c67f6d9c92 feat: clearer email verification flow & related error messages (#1904)
* fix: fe2 auth error page + various minor UI bugs

* clean up & reporting failing email to fe

* new mutation to resend verification as guest

* email text updates

* fixing issues brought up by agi

* more text fixes

* swapping out space-XXX for gap-XXX
2023-12-15 13:09:26 +02:00

15 lines
454 B
Vue

<template>
<div v-if="hasLock">
<SingletonToastManager />
<SingletonAppErrorStateManager />
</div>
<div v-else />
</template>
<script setup lang="ts">
// This just wraps all global singleton/manager components that should be always available in all layouts
import { useLock } from '~~/lib/common/composables/singleton'
// Protection against component being mounted multiple times
const { hasLock } = useLock('SingletonManagers')
</script>