From 68668ef2cd6be5f7ad262251302ba17291528d8c Mon Sep 17 00:00:00 2001 From: yiekheng Date: Sun, 10 May 2026 19:04:39 +0800 Subject: [PATCH] feat(web): footer reads 'Signed in as ' with italic name Co-Authored-By: Claude Opus 4.7 (1M context) --- apps/web/src/components/app-shell.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/components/app-shell.tsx b/apps/web/src/components/app-shell.tsx index 91b5a69..ce5922e 100644 --- a/apps/web/src/components/app-shell.tsx +++ b/apps/web/src/components/app-shell.tsx @@ -47,8 +47,8 @@ function SignOutButton({ username }: { username: string | null }) {
{username && ( -

- {username} +

+ Signed in as {username}

)}