diff --git a/src/components/layout/ProfileSheetContent.vue b/src/components/layout/ProfileSheetContent.vue index 9d3f5fe..dc01371 100644 --- a/src/components/layout/ProfileSheetContent.vue +++ b/src/components/layout/ProfileSheetContent.vue @@ -66,9 +66,7 @@ const npubPreview = computed(() => { return value.length > 24 ? `${value.slice(0, 12)}…${value.slice(-8)}` : value }) -// "Back to hub" is hidden for the events-only launch (see template). -// Re-enable this alongside the commented-out link below when the hub ships. -// const hubRootUrl = computed(() => import.meta.env.VITE_HUB_ROOT_URL || '/') +const hubRootUrl = computed(() => import.meta.env.VITE_HUB_ROOT_URL || '/') const copiedField = ref(null) async function copyToClipboard(text: string, field: string) { @@ -105,156 +103,166 @@ async function onLogout() {