From a199393e298c7d22df2ffc18bc3eb7238d468658 Mon Sep 17 00:00:00 2001 From: DecDuck Date: Sat, 7 Jun 2025 17:26:09 +1000 Subject: [PATCH] Fix: Sign out functionality #95 (#99) * fix: signout button on user widget * fix: add comment explaining --- components/UserHeader/UserWidget.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/UserHeader/UserWidget.vue b/components/UserHeader/UserWidget.vue index dc8d517..59d2daf 100644 --- a/components/UserHeader/UserWidget.vue +++ b/components/UserHeader/UserWidget.vue @@ -64,6 +64,8 @@ active ? 'bg-zinc-800 text-zinc-100' : 'text-zinc-400', 'w-full text-left transition block px-4 py-2 text-sm', ]" + :data-comment="'external=true is required because we implemented the signout as a route on the server for performance'" + :external="true" @click="close" > {{ $t("auth.signout") }}