Updated on 2026-08-14
This commit is contained in:
parent
1fea0c7c48
commit
3a1101cead
1 changed files with 6 additions and 2 deletions
|
|
@ -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(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue