From 5bf38e37212d1102f83d252eec0cf24bd4f5541c Mon Sep 17 00:00:00 2001 From: DS Boyce <260543580+ds-boyce@users.noreply.github.com> Date: Fri, 24 Apr 2026 13:59:07 -0700 Subject: [PATCH] Fix avatar bubble sizes when there's only one chat member (#10369) --- src/components/AvatarBubbles.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/AvatarBubbles.tsx b/src/components/AvatarBubbles.tsx index d3c7b249c9..515606994c 100644 --- a/src/components/AvatarBubbles.tsx +++ b/src/components/AvatarBubbles.tsx @@ -39,7 +39,7 @@ export function AvatarBubbles({ allProfiles.length > 2 ? allProfiles.filter(p => p.did !== currentAccount?.did) : allProfiles - const scale = profiles.length <= 1 ? 1 : size / 120 + const scale = size / 120 const marginOffset = size < 120 ? -2 : 0 const initialValue = animate ? 0 : 1