From cf290372162b918c56d2c2e5ba67d7f448ad19ba Mon Sep 17 00:00:00 2001 From: diogo464 Date: Thu, 14 Aug 2025 14:46:40 +0100 Subject: feat: display user email next to logout button MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When a user is logged in, their email address now appears to the left of the logout button with proper spacing and styling. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- frontend/components/auth/AuthButtons.tsx | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'frontend') diff --git a/frontend/components/auth/AuthButtons.tsx b/frontend/components/auth/AuthButtons.tsx index 18ea13d..cfa69fe 100644 --- a/frontend/components/auth/AuthButtons.tsx +++ b/frontend/components/auth/AuthButtons.tsx @@ -8,16 +8,19 @@ export async function AuthButtons() { if (user.isLoggedIn) { return ( -
- -
+
+ {user.email} +
+ +
+
) } - const authUrl = `${Auth_tinyauth_public_endpoint()}/auth/google` + const authUrl = `${Auth_tinyauth_public_endpoint()}/login` return (