Updated on 2026-08-14

This commit is contained in:
Tangem 2024-11-11 11:40:39 +02:00
parent 1fea0c7c48
commit 3a1101cead

View file

@ -165,9 +165,13 @@ private fun LazyListScope.activeStakingBlock(
}
itemsIndexed(
items = state.yieldBalance.balances,
key = { _, balance ->
key = { index, balance ->
// Staked balance does not have unique identifier.
balance.toString()
buildString {
append(balance.hashCode())
append("_")
append(index)
}
},
) { index, balance ->
ActiveStakingBlock(