From 38bd947743a1563b3cee7cf7185087c22fbd8ee7 Mon Sep 17 00:00:00 2001 From: nestoralonso Date: Mon, 7 Oct 2019 09:41:31 -0500 Subject: [PATCH] Update rootSaga.js Fix typo in message --- web/src/saga/rootSaga.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/saga/rootSaga.js b/web/src/saga/rootSaga.js index c4bd376..a334e19 100644 --- a/web/src/saga/rootSaga.js +++ b/web/src/saga/rootSaga.js @@ -73,8 +73,8 @@ function * doToggleRemoteInterceptHttps(flag) { function * doToggleRemoteGlobalProxy(flag) { const result = yield call(postJSON, '/api/toggleGlobalProxy', { flag: flag }); - const windowsMessage = 'Sucessfully turned on, it may take up to 1 min to take effect.'; - const linuxMessage = 'Sucessfully turned on.'; + const windowsMessage = 'Successfully turned on, it may take up to 1 min to take effect.'; + const linuxMessage = 'Successfully turned on.'; const turnDownMessage = 'Global proxy has been turned down.'; if (isApiSuccess(result)) { const tipMessage = result.isWindows ? windowsMessage : linuxMessage;