Fix avatar bubble sizes when there's only one chat member (#10369)

This commit is contained in:
DS Boyce
2026-04-24 13:59:07 -07:00
committed by GitHub
parent 7eec65ac78
commit 5bf38e3721
+1 -1
View File
@@ -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