From 641dfc3fd38aee5aa37c4caef0646f0bd3aa3cb1 Mon Sep 17 00:00:00 2001 From: Jared Pereira Date: Mon, 27 Apr 2026 17:56:11 -0400 Subject: [PATCH] update nav for email only users --- components/ActionBar/DesktopNavigation.tsx | 8 +++++--- components/ActionBar/MobileNavigation.tsx | 2 +- components/ActionBar/ProfileButton.tsx | 6 +++++- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/components/ActionBar/DesktopNavigation.tsx b/components/ActionBar/DesktopNavigation.tsx index a63cc222..4447e091 100644 --- a/components/ActionBar/DesktopNavigation.tsx +++ b/components/ActionBar/DesktopNavigation.tsx @@ -32,9 +32,11 @@ export const DesktopNavigation = (props: { {identity ? ( <> - + {identity.atp_did && ( + + )} ) : ( {identity ? (
- + {identity.atp_did && }
) : ( diff --git a/components/ActionBar/ProfileButton.tsx b/components/ActionBar/ProfileButton.tsx index e2f1afc0..7c064ef0 100644 --- a/components/ActionBar/ProfileButton.tsx +++ b/components/ActionBar/ProfileButton.tsx @@ -44,7 +44,11 @@ export const ProfileButton = () => { ) } - label={record ? record.displayName || record.handle : "Account"} + label={ + record + ? record.displayName || record.handle + : identity?.email || "Account" + } className={`w-full`} /> } -- 2.51.2