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
@@ -95,7 +95,7 @@ private fun SourceList(
key = {
when (it) {
is SourceUiModel.Header -> it.hashCode()
is SourceUiModel.Item -> it.source.key()
is SourceUiModel.Item -> "source-${it.source.key()}"
}
},
) { model ->