Add content description to custom emojis

This commit is contained in:
David Kaspar
2024-12-07 21:06:21 +01:00
parent 39a7d98651
commit 1972cdeafb
@@ -137,7 +137,7 @@ public fun RenderEmojiPack(
IconButton(onClick = { onClick(emoji) }, modifier = Size35Modifier) {
AsyncImage(
model = emoji.url,
contentDescription = null,
contentDescription = emoji.code,
modifier = Size35Modifier,
)
}
@@ -148,7 +148,7 @@ public fun RenderEmojiPack(
) {
AsyncImage(
model = emoji.url,
contentDescription = null,
contentDescription = emoji.code,
modifier = Size35Modifier,
)
}