From bc39aa5bbda8dfa91fcb8e404b9cc68c2eec5674 Mon Sep 17 00:00:00 2001 From: Khuram Niaz Date: Sat, 28 Feb 2026 00:20:54 -0700 Subject: [PATCH] fix(ui): display user email in profile dropdown instead of static text --- src/components/ProfileDropdown.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ProfileDropdown.tsx b/src/components/ProfileDropdown.tsx index baee916..fa96cfc 100644 --- a/src/components/ProfileDropdown.tsx +++ b/src/components/ProfileDropdown.tsx @@ -30,7 +30,7 @@ export function ProfileDropdown({ user, signOutAction }: ProfileDropdownProps) { - My Account + {user?.email ?? "My Account"}