diff --git a/common/sagas/config/node.ts b/common/sagas/config/node.ts index 22c64ba8..eda6ee0e 100644 --- a/common/sagas/config/node.ts +++ b/common/sagas/config/node.ts @@ -148,6 +148,12 @@ export function* handleChangeNodeRequested({ // Bail out if they're switching to the same node if (currentConfig.id === nodeIdToSwitchTo) { + yield put( + changeNodeSucceeded({ + nodeId: currentConfig.id, + networkId: currentConfig.network + }) + ); return; }