diff --git a/components/Settings.vue b/components/Settings.vue index 476b5e9..a4a8889 100644 --- a/components/Settings.vue +++ b/components/Settings.vue @@ -187,7 +187,9 @@ export default { }, onSave() { this.SAVE_RPC({ ...this.rpc, netId: this.netId }) - this.SAVE_RPC({ ...this.ethRpc, netId: 1 }) + if (this.netId !== 1) { + this.SAVE_RPC({ ...this.ethRpc, netId: 1 }) + } this.$emit('close') }, onCancel() {