Avoid potential infinite loop.

This commit is contained in:
Benoit Marty 2025-06-23 21:56:20 +02:00
parent ddca92a353
commit e1bde435f5

View file

@ -49,12 +49,13 @@ internal fun AvatarCluster(
error("Unsupported number of avatars: 0") error("Unsupported number of avatars: 0")
} }
1 -> { 1 -> {
Avatar( InitialOrImageAvatar(
avatarData = limitedAvatars[0], avatarData = limitedAvatars[0],
avatarType = avatarType, hideAvatarImage = hideAvatarImages,
avatarShape = avatarType.avatarShape(),
forcedAvatarSize = null,
modifier = modifier, modifier = modifier,
contentDescription = contentDescription, contentDescription = contentDescription,
hideImage = hideAvatarImages
) )
} }
else -> { else -> {