Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
pkieltyka committed Jul 17, 2023
1 parent 822fa6d commit 82c7c9c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,10 @@ And that has made all the difference.
}, [chainId])

// networks list, filtered and sorted
const omitNetworks = [ChainId.RINKEBY, ChainId.HARDHAT, ChainId.HARDHAT_2, ChainId.KOVAN, ChainId.FANTOM_TESTNET, ChainId.ROPSTEN, ChainId.AURORA, ChainId.AURORA_TESTNET]
const omitNetworks = [
ChainId.RINKEBY, ChainId.HARDHAT, ChainId.HARDHAT_2, ChainId.KOVAN, ChainId.FANTOM_TESTNET,
ChainId.ROPSTEN, ChainId.AURORA, ChainId.AURORA_TESTNET
]
const networks = Object.values(sequence.network.networks)
.filter(val => (omitNetworks.indexOf(val.chainId) < 0))
.sort((a, b) => a.title > b.title ? 1 : -1)
Expand Down

0 comments on commit 82c7c9c

Please sign in to comment.