Use pubkeyhex for lazy column key instead of Address

This commit is contained in:
David Kaspar
2025-08-17 23:02:25 +01:00
parent 45ec9e3a62
commit b38e9247ce
@@ -394,7 +394,7 @@ fun EmojiCollectionGallery(
LazyColumn(
state = listState,
) {
itemsIndexed(emojiCollections, key = { _, item -> item }) { _, item ->
itemsIndexed(emojiCollections, key = { _, item -> item.pubKeyHex }) { _, item ->
LoadAddressableNote(item, accountViewModel) {
it?.let { WatchAndRenderNote(it, bgColor, accountViewModel, nav, onClick) }
}