diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2018-10-16 04:03:44 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2018-10-16 04:03:44 +0200 |
| commit | 63b717582a45177fc8b8cf3ea5f8e828e5a7b07f (patch) | |
| tree | 0103d96890689892d62da1367429251a78d76c4b | |
| parent | 714519242b7cddbd8221fe12eba5c89dfc6dd458 (diff) | |
| download | mullvadvpn-63b717582a45177fc8b8cf3ea5f8e828e5a7b07f.tar.xz mullvadvpn-63b717582a45177fc8b8cf3ea5f8e828e5a7b07f.zip | |
Correct the accountToken type
| -rw-r--r-- | gui/packages/desktop/src/renderer/lib/daemon-rpc.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/packages/desktop/src/renderer/lib/daemon-rpc.js b/gui/packages/desktop/src/renderer/lib/daemon-rpc.js index 0950a51130..572954b26b 100644 --- a/gui/packages/desktop/src/renderer/lib/daemon-rpc.js +++ b/gui/packages/desktop/src/renderer/lib/daemon-rpc.js @@ -311,7 +311,7 @@ export class SubscriptionListener<T> { } export type Settings = { - accountToken: AccountToken, + accountToken: ?AccountToken, allowLan: boolean, autoConnect: boolean, relaySettings: RelaySettings, |
