Skip to content

Commit 885fe1a

Browse files
authored
chore: Add OP to claim options (#4453)
1 parent a47d892 commit 885fe1a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/pages/claim-submissions.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,11 @@ type NetworkOption = {
3131
*/
3232
const claimsNetwork = Network.MAINNET;
3333
const networkOptions: NetworkOption[] = Object.values(config)
34-
.filter(config => config.visibleInUI && !config.testNetwork)
34+
.filter(
35+
config =>
36+
(config.visibleInUI || config.chainId === Network.OPTIMISM) &&
37+
!config.testNetwork
38+
)
3539
.map(convertConfigToNetworkOption);
3640
3741
const form = reactive<Form>({

0 commit comments

Comments
 (0)