Skip to content

Commit

Permalink
fix(VersionSelector): use correct LazyColumn item key
Browse files Browse the repository at this point in the history
  • Loading branch information
Axelen123 committed Mar 5, 2024
1 parent 16cdc7a commit ef04186
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ fun VersionSelectorScreen(

items(
items = list,
key = { it.packageName }
key = { it.version }
) {
SelectedAppItem(
selectedApp = it,
Expand Down

0 comments on commit ef04186

Please sign in to comment.