From b5dd7dd59087b7cc59859d078dbab13d4fa79bce Mon Sep 17 00:00:00 2001 From: mplorentz Date: Mon, 16 Mar 2026 09:52:40 -0400 Subject: [PATCH] Clean up deriveProfile call in ProfileCircle --- src/app/components/ProfileCircle.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/components/ProfileCircle.svelte b/src/app/components/ProfileCircle.svelte index abf970c6..49f769b2 100644 --- a/src/app/components/ProfileCircle.svelte +++ b/src/app/components/ProfileCircle.svelte @@ -14,11 +14,11 @@ const {pubkey, url, size = 7, ...props}: Props = $props() - const profile = pubkey ? deriveProfile(pubkey, removeUndefined([url])) : undefined + const profile = deriveProfile(pubkey, removeUndefined([url])) + src={$profile?.picture || UserRounded} />