Avoid potential infinite loop.
This commit is contained in:
parent
ddca92a353
commit
e1bde435f5
1 changed files with 4 additions and 3 deletions
|
|
@ -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 -> {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue