Skip to content

Commit

Permalink
Merge branch 'handle-uppercase-network-url' into release-v2.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tombeynon committed Oct 31, 2023
2 parents a98804a + ce99b33 commit a471e02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/NetworkFinder.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ function NetworkFinder() {

useEffect(() => {
if (Object.keys(state.networks).length && (!state.network || state.network.path !== params.network)) {
let networkName = params.network
let networkName = params.network?.toLowerCase()
const network = state.networks[networkName]
if (!network) {
navigate("/");
Expand Down

0 comments on commit a471e02

Please sign in to comment.