Use more unique item keys

Should make stacktraces more distinguishable.
This commit is contained in:
arkon
2022-09-26 17:23:04 -04:00
parent f4c684b4b8
commit e90b39b29d
7 changed files with 13 additions and 13 deletions
@@ -112,7 +112,7 @@ private fun MigrateSourceList(
items(
items = list,
key = { (source, _) -> source.id },
key = { (source, _) -> "migrate-${source.id}" },
) { (source, count) ->
MigrateSourceItem(
modifier = Modifier.animateItemPlacement(),