chore: UX design audit cleanup and receipt flow improvements #186

Merged
egullickson merged 25 commits from issue-162-ux-design-audit-cleanup into main 2026-02-14 03:50:23 +00:00
Showing only changes of commit da4cd858fa - Show all commits

View File

@@ -263,7 +263,7 @@ export const Layout: React.FC<LayoutProps> = ({ children, mobileMode = false })
<Box sx={{ display: 'flex', alignItems: 'center', gap: 2 }}>
<NotificationBell />
<Typography variant="body2" color="text.secondary">
Welcome back, {user?.name || user?.email}
Welcome back, {user?.given_name || user?.name?.split(' ')[0] || user?.nickname || user?.email}
</Typography>
</Box>
</Box>