enh: show account verification bar everywhere

This commit is contained in:
Ben Allfree 2023-11-04 08:39:38 -07:00
parent 0205c4a476
commit cc040e1862
2 changed files with 3 additions and 3 deletions

View File

@ -2,6 +2,7 @@
import MediaQuery from '$components/MediaQuery.svelte' import MediaQuery from '$components/MediaQuery.svelte'
import MobileNavDrawer from '$components/MobileNavDrawer.svelte' import MobileNavDrawer from '$components/MobileNavDrawer.svelte'
import Navbar from '$components/Navbar.svelte' import Navbar from '$components/Navbar.svelte'
import VerifyAccountBar from '$components/VerifyAccountBar.svelte'
import AuthStateGuard from '$components/helpers/AuthStateGuard.svelte' import AuthStateGuard from '$components/helpers/AuthStateGuard.svelte'
import Meta from '$components/helpers/Meta.svelte' import Meta from '$components/helpers/Meta.svelte'
import UserLoggedIn from '$components/helpers/UserLoggedIn.svelte' import UserLoggedIn from '$components/helpers/UserLoggedIn.svelte'
@ -29,6 +30,8 @@
<div <div
class="bg-base-300 border-base-300 border-[16px] xl:h-[calc(100vh-32px)] lg:p-4 rounded-2xl xl:overflow-hidden xl:overflow-y-auto" class="bg-base-300 border-base-300 border-[16px] xl:h-[calc(100vh-32px)] lg:p-4 rounded-2xl xl:overflow-hidden xl:overflow-y-auto"
> >
<VerifyAccountBar />
<slot /> <slot />
</div> </div>
</div> </div>

View File

@ -1,5 +1,4 @@
<script lang="ts"> <script lang="ts">
import VerifyAccountBar from '$components/VerifyAccountBar.svelte'
import AuthStateGuard from '$components/helpers/AuthStateGuard.svelte' import AuthStateGuard from '$components/helpers/AuthStateGuard.svelte'
import { globalInstancesStore } from '$util/stores' import { globalInstancesStore } from '$util/stores'
import { values } from '@s-libs/micro-dash' import { values } from '@s-libs/micro-dash'
@ -22,8 +21,6 @@
> >
</div> </div>
<VerifyAccountBar />
<!--<UsageChartForAllInstances />--> <!--<UsageChartForAllInstances />-->
<InstanceList /> <InstanceList />