From 84b47d2d6ecb4e230fccd9b59d637d367269eaf7 Mon Sep 17 00:00:00 2001 From: Jack Hamer <47187316+JackHamer09@users.noreply.github.com> Date: Thu, 18 Aug 2022 12:48:14 +0300 Subject: [PATCH] fix: remove sepolia network (#288) --- src/blocks/modals/NetworkSwitch.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/blocks/modals/NetworkSwitch.vue b/src/blocks/modals/NetworkSwitch.vue index 1a751453b..fe946918e 100644 --- a/src/blocks/modals/NetworkSwitch.vue +++ b/src/blocks/modals/NetworkSwitch.vue @@ -27,7 +27,9 @@ export default Vue.extend({ name: "NetworkSwitch", computed: { options() { - return Object.keys(zkSyncNetworkConfig).filter((zkNetworkName) => !["localhost"].includes(zkNetworkName)); + return Object.keys(zkSyncNetworkConfig).filter( + (zkNetworkName) => !["localhost", "sepolia"].includes(zkNetworkName) + ); }, network() { return this.$store.getters["zk-provider/network"];