We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cba94bd commit a9a858dCopy full SHA for a9a858d
1 file changed
ui/src/commonMain/kotlin/dev/materii/gloom/ui/screen/repo/component/CommitItem.kt
@@ -90,7 +90,7 @@ fun CommitItem(
90
val authorAvatar = author?.avatarUrl
91
val committerAvatar = committer?.avatarUrl
92
93
- val avatars = buildList {
+ val avatars = mutableListOf<String>().apply {
94
authorAvatar?.let { add(it) }
95
if (isUniqueCommiter) committerAvatar?.let { add(it) }
96
}.toPersistentList()
0 commit comments