Skip to content

Commit

Permalink
fix: remove rinkeby-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
JackHamer09 committed Aug 3, 2022
1 parent 79dee25 commit baf3acb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blocks/modals/NetworkSwitch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default Vue.extend({
computed: {
options() {
return Object.keys(zkSyncNetworkConfig).filter(
(zkNetworkName) => zkNetworkName !== "localhost" && zkNetworkName !== "sepolia"
(zkNetworkName) => !["sepolia", "rinkeby-beta", "localhost"].includes(zkNetworkName)
);
},
network() {
Expand Down

0 comments on commit baf3acb

Please sign in to comment.