c67f6d9c92
* 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
15 lines
454 B
Vue
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>
|