diff options
Diffstat (limited to 'app/lib')
| -rw-r--r-- | app/lib/backend-redux-actions.js | 2 | ||||
| -rw-r--r-- | app/lib/backend.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/lib/backend-redux-actions.js b/app/lib/backend-redux-actions.js index 0ca63b0aab..bf5f2cc59d 100644 --- a/app/lib/backend-redux-actions.js +++ b/app/lib/backend-redux-actions.js @@ -61,7 +61,7 @@ export default function mapBackendEventsToReduxActions(backend: Backend, store: const onLogout = () => { store.dispatch(accountActions.loginChange({ status: 'none', - account: '', + accountNumber: '', paidUntil: null, error: null })); diff --git a/app/lib/backend.js b/app/lib/backend.js index bf3a1382f1..076a49ca32 100644 --- a/app/lib/backend.js +++ b/app/lib/backend.js @@ -135,7 +135,7 @@ export class Backend { log.info('Attempting to login with account number', account); // emit: logging in - this._emit('logging', { account }, null); + this._emit('logging', { accountNumber: account }, null); this._ipc.getAccountData(account) .then( response => { |
