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`} /> }