From 59e7e40128d3f8f255d68cecff85125ebbf59f95 Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Sat, 4 Oct 2025 18:14:17 -0600 Subject: [PATCH] Harmonise ProfileView and HostApp. --- frontend/src/components/ProfileView.vue | 9 ++++++++- frontend/src/host/HostApp.vue | 22 +++++++++------------- 2 files changed, 17 insertions(+), 14 deletions(-) diff --git a/frontend/src/components/ProfileView.vue b/frontend/src/components/ProfileView.vue index bae102a..f17c2d9 100644 --- a/frontend/src/components/ProfileView.vue +++ b/frontend/src/components/ProfileView.vue @@ -62,13 +62,20 @@
+
-

End your current session on {{ currentSessionHost }}.

+

Logout from {{ currentSessionHost }}.

Logout this session on {{ currentSessionHost }}, or All sessions across all sites and devices for {{ rpName }}. You'll need to log in again with your passkey afterwards.

Back + -

Logout from {{ currentHost }}, or access your Full Profile at {{ authSiteHost }} (you may need to sign in again).

@@ -102,10 +102,6 @@ const goToAuthSite = () => { window.location.href = authSiteUrl.value } -const goBack = () => { - window.history.back() -} - const logout = async () => { await authStore.logout() }