Skip to content

Commit

Permalink
Fix non-unique key for nft items
Browse files Browse the repository at this point in the history
  • Loading branch information
micbakos-rdx committed May 19, 2023
1 parent c089c65 commit 9aa71bb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ fun NonFungibleResourcesContent(
}
items(
nft.items,
key = { item -> item.globalAddress(nftAddress = item.localId) }
key = { item -> item.globalAddress(nftAddress = nft.resourceAddress) }
) { item ->
AnimatedVisibility(
visible = !collapsed,
Expand Down

0 comments on commit 9aa71bb

Please sign in to comment.