diff options
| author | Erik Larkö <erik@mullvad.net> | 2017-06-30 10:19:17 +0200 |
|---|---|---|
| committer | Erik Larkö <erik@mullvad.net> | 2017-07-07 12:54:37 +0200 |
| commit | 5da649c239443431fe492fdf57fbdaee0099ca79 (patch) | |
| tree | 0af0fb8df25886c7e2b234a5fd8bd12ddcdfd230 /app/redux | |
| parent | 14dde4abec12189a63f1ae071b300add447c2bfc (diff) | |
| download | mullvadvpn-5da649c239443431fe492fdf57fbdaee0099ca79.tar.xz mullvadvpn-5da649c239443431fe492fdf57fbdaee0099ca79.zip | |
Rename loginstate connecting->logging in
Diffstat (limited to 'app/redux')
| -rw-r--r-- | app/redux/account/reducers.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/redux/account/reducers.js b/app/redux/account/reducers.js index 06dfb05941..52b36f60a0 100644 --- a/app/redux/account/reducers.js +++ b/app/redux/account/reducers.js @@ -6,7 +6,7 @@ import type { Coordinate2d } from '../../types'; import type { ReduxAction } from '../store'; import type { BackendError } from '../../lib/backend'; -export type LoginState = 'none' | 'connecting' | 'failed' | 'ok'; +export type LoginState = 'none' | 'logging in' | 'failed' | 'ok'; export type AccountReduxState = { accountNumber: ?string, paidUntil: ?string, // ISO8601 |
