fix(VersionSelector): use correct LazyColumn item key

This commit is contained in:
Ax333l 2024-03-05 14:34:45 +01:00
parent 16cdc7aca4
commit ef041869e5
No known key found for this signature in database
GPG key ID: D2B4D85271127D23

View file

@ -117,7 +117,7 @@ fun VersionSelectorScreen(
items( items(
items = list, items = list,
key = { it.packageName } key = { it.version }
) { ) {
SelectedAppItem( SelectedAppItem(
selectedApp = it, selectedApp = it,