Skip to content

Commit

Permalink
fix: remove sepolia network (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
JackHamer09 authored Aug 18, 2022
1 parent 38fb249 commit 84b47d2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/blocks/modals/NetworkSwitch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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"];
Expand Down

0 comments on commit 84b47d2

Please sign in to comment.