We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a47d892 commit 885fe1aCopy full SHA for 885fe1a
src/pages/claim-submissions.vue
@@ -31,7 +31,11 @@ type NetworkOption = {
31
*/
32
const claimsNetwork = Network.MAINNET;
33
const networkOptions: NetworkOption[] = Object.values(config)
34
- .filter(config => config.visibleInUI && !config.testNetwork)
+ .filter(
35
+ config =>
36
+ (config.visibleInUI || config.chainId === Network.OPTIMISM) &&
37
+ !config.testNetwork
38
+ )
39
.map(convertConfigToNetworkOption);
40
41
const form = reactive<Form>({
0 commit comments