summaryrefslogtreecommitdiffhomepage
path: root/app/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/app.js')
-rw-r--r--app/app.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/app/app.js b/app/app.js
index f829e4bd29..7710ff1acf 100644
--- a/app/app.js
+++ b/app/app.js
@@ -10,11 +10,8 @@ import { webFrame, ipcRenderer } from 'electron';
import log from 'electron-log';
import makeRoutes from './routes';
import configureStore from './redux/store';
-import accountActions from './redux/account/actions';
-import connectionActions from './redux/connection/actions';
import { Backend } from './lib/backend';
-import type { LoginState } from './redux/account/reducers';
import type { ConnectionState } from './redux/connection/reducers';
import type { TrayIconType } from './lib/tray-icon-manager';
@@ -64,21 +61,6 @@ updateTrayIcon();
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
-// reset login state if user quit the app during login
-if((['logging in', 'failed']: Array<LoginState>).includes(store.getState().account.status)) {
- store.dispatch(accountActions.loginChange({
- status: 'none'
- }));
-}
-
-// reset connection state if user quit the app when logging in
-if(store.getState().connection.status === 'logging in') {
- store.dispatch(connectionActions.connectionChange({
- status: 'disconnected'
- }));
-}
-
-
// disable smart pinch.
webFrame.setZoomLevelLimits(1, 1);