Skip to content

Commit

Permalink
Replace remaining .removeLast()
Browse files Browse the repository at this point in the history
  • Loading branch information
reconman committed Jan 11, 2025
1 parent 77dd1a5 commit affa924
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ fun CardPriorityWaveSelector(
if (selectedWave == items.lastIndex) {
onSelectedWaveChange(items.lastIndex - 1)
}
items.removeLast()
items.removeAt(items.lastIndex)
}
}
) {
Expand Down

0 comments on commit affa924

Please sign in to comment.