summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--gui/packages/desktop/src/renderer/lib/daemon-rpc.js3
-rw-r--r--gui/packages/desktop/test/components/SelectLocation.spec.js3
2 files changed, 1 insertions, 5 deletions
diff --git a/gui/packages/desktop/src/renderer/lib/daemon-rpc.js b/gui/packages/desktop/src/renderer/lib/daemon-rpc.js
index 40f57ce856..572954b26b 100644
--- a/gui/packages/desktop/src/renderer/lib/daemon-rpc.js
+++ b/gui/packages/desktop/src/renderer/lib/daemon-rpc.js
@@ -187,7 +187,6 @@ export type RelayListCity = {
export type RelayListHostname = {
hostname: string,
ipv4AddrIn: string,
- ipv4AddrExit: string,
includeInCountry: boolean,
weight: number,
};
@@ -312,7 +311,7 @@ export class SubscriptionListener<T> {
}
export type Settings = {
- accountToken: AccountToken,
+ accountToken: ?AccountToken,
allowLan: boolean,
autoConnect: boolean,
relaySettings: RelaySettings,
diff --git a/gui/packages/desktop/test/components/SelectLocation.spec.js b/gui/packages/desktop/test/components/SelectLocation.spec.js
index f4aaf83ba1..b8bb8991c8 100644
--- a/gui/packages/desktop/test/components/SelectLocation.spec.js
+++ b/gui/packages/desktop/test/components/SelectLocation.spec.js
@@ -30,14 +30,12 @@ describe('components/SelectLocation', () => {
{
hostname: 'fake1.mullvad.net',
ipv4AddrIn: '192.168.0.100',
- ipv4AddrExit: '192.168.1.100',
includeInCountry: true,
weight: 1,
},
{
hostname: 'fake2.mullvad.net',
ipv4AddrIn: '192.168.0.101',
- ipv4AddrExit: '192.168.1.101',
includeInCountry: true,
weight: 1,
},
@@ -53,7 +51,6 @@ describe('components/SelectLocation', () => {
{
hostname: 'fake2.mullvad.net',
ipv4AddrIn: '192.168.0.101',
- ipv4AddrExit: '192.168.1.101',
includeInCountry: true,
weight: 1,
},