From e3e6970818119c70537ee5230ce42923d2d47b2d Mon Sep 17 00:00:00 2001 From: Mohammad Ranjbar Z Date: Thu, 26 Sep 2024 11:04:15 +0330 Subject: [PATCH] Add mainnet and sepolia to network selector related to https://github.com/Giveth/giveth-dapps-v2/issues/4783#event-14403871038 --- src/components/NetworkSelector.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/NetworkSelector.tsx b/src/components/NetworkSelector.tsx index 3873b389cc..2d32ecfd65 100644 --- a/src/components/NetworkSelector.tsx +++ b/src/components/NetworkSelector.tsx @@ -36,6 +36,7 @@ export interface ISelected { const _options = [ { network: config.GNOSIS_CONFIG, active: true }, { network: config.OPTIMISM_CONFIG, active: true }, + { network: config.MAINNET_CONFIG, active: true }, { network: config.ZKEVM_CONFIG, active: true }, ];