From b8ac82e897bcab209bedb10591e981ed2ff3695e Mon Sep 17 00:00:00 2001 From: jay Date: Mon, 29 Jun 2026 05:54:11 -0400 Subject: [PATCH] HubBar: show the signed-in profile picture in the account button MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The cutover put HubBar on / and /news, but HubBar's account icon was a hardcoded person SVG — so signed-in users lost the avatar the old `/` Header showed. Render when auth.user.avatar_url exists (fills the circle, no tint peek); fall back to the person glyph when signed out / no picture. Co-Authored-By: Claude Opus 4.8 --- frontend/src/lib/components/HubBar.svelte | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/frontend/src/lib/components/HubBar.svelte b/frontend/src/lib/components/HubBar.svelte index 3b460bb..8a37c37 100644 --- a/frontend/src/lib/components/HubBar.svelte +++ b/frontend/src/lib/components/HubBar.svelte @@ -1,8 +1,10 @@