Skip to content

Commit

Permalink
fix: fix if conditional in GH form processing
Browse files Browse the repository at this point in the history
  • Loading branch information
alfetopito committed May 15, 2024
1 parent 40e9d85 commit 39590b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/processRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
if (values.network === 'MAINNET') {
values.chainId = 1
values.blockExplorer = 'etherscan'
} else if () {
} else if (values.network === 'ARBITRUM_ONE') {
values.chainId = 42161
values.blockExplorer = 'arbiscan'
} else {
Expand Down

0 comments on commit 39590b1

Please sign in to comment.