mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 16:38:20 +01:00
fix: 🐛 Fix not being able to sign out on desktop
This commit is contained in:
parent
6e2401b67d
commit
8707a45ec8
|
|
@ -25,7 +25,8 @@
|
||||||
<h3 class="font-semibold text-gray-300 text-xs uppercase opacity-0 group-hover:opacity-100 duration-200">
|
<h3 class="font-semibold text-gray-300 text-xs uppercase opacity-0 group-hover:opacity-100 duration-200">
|
||||||
Account</h3>
|
Account</h3>
|
||||||
<ClientOnly>
|
<ClientOnly>
|
||||||
<SidebarsAccountPicker @sign-in="signIn().finally(() => loadingAuth = false)" />
|
<SidebarsAccountPicker @sign-in="signIn().finally(() => loadingAuth = false)"
|
||||||
|
@sign-out="id => signOut(id).finally(() => loadingAuth = false)" />
|
||||||
<NuxtLink href="/register" v-if="!identity">
|
<NuxtLink href="/register" v-if="!identity">
|
||||||
<ButtonsBase
|
<ButtonsBase
|
||||||
class="flex flex-row text-left items-center justify-start gap-3 text-lg hover:ring-1 ring-white/10 overflow-hidden h-12 w-full duration-200">
|
class="flex flex-row text-left items-center justify-start gap-3 text-lg hover:ring-1 ring-white/10 overflow-hidden h-12 w-full duration-200">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue