Skip to content

Commit

Permalink
Fixed settings and fallback network
Browse files Browse the repository at this point in the history
  • Loading branch information
flashburst committed Mar 11, 2024
1 parent e36f373 commit bff920b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .vscode/settings.json
Expand Up @@ -5,14 +5,14 @@
"editor.formatOnSave": true,
"editor.defaultFormatter": "standard.vscode-standard",
"editor.codeActionsOnSave": {
"source.fixAll": true
"source.fixAll": "explicit"
}
},
"[javascript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "standard.vscode-standard",
"editor.codeActionsOnSave": {
"source.fixAll": true
"source.fixAll": "explicit"
}
},
"[yaml]": {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/dns.js
Expand Up @@ -33,6 +33,6 @@ export const detectChainId = (host = '') => {
return '137'

default:
return process.env.NEXT_PUBLIC_FALLBACK_NETWORK || '84531'
return process.env.NEXT_PUBLIC_FALLBACK_NETWORK || '80001'
}
}

0 comments on commit bff920b

Please sign in to comment.