mirror of
https://github.com/trezor/trezor-wallet
synced 2025-06-10 01:58:46 +00:00
sort coins by order
This commit is contained in:
parent
a313f4a8ed
commit
cb89d0bbcf
@ -37,7 +37,9 @@ class CoinMenu extends PureComponent<Props> {
|
||||
}
|
||||
|
||||
getOtherCoins() {
|
||||
return coins.map(coin => {
|
||||
return coins
|
||||
.sort((a, b) => a.order - b.order)
|
||||
.map(coin => {
|
||||
const row = (
|
||||
<RowCoin
|
||||
network={{
|
||||
|
Loading…
Reference in New Issue
Block a user