62eb807512
* feat: stopping subscriptions at >100 errors per minute * chore: added explanatory comments * added error state banner in fe1 * feat: error state banner in fe2
10 lines
249 B
Vue
10 lines
249 B
Vue
<template>
|
|
<div>
|
|
<SingletonToastManager />
|
|
<SingletonAppErrorStateManager />
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
// This just wraps all global singleton/manager components that should be always available in all layouts
|
|
</script>
|