diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2018-06-20 15:34:40 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2018-07-03 13:37:54 +0200 |
| commit | 73840e98952dd3f7c005fcec44c971455da179eb (patch) | |
| tree | 15a887410858007a802450ad2870d8bf495dd16d /app/components | |
| parent | 67e82627564f8e4a2d8da4bcf5f0fd00867876bc (diff) | |
| download | mullvadvpn-73840e98952dd3f7c005fcec44c971455da179eb.tar.xz mullvadvpn-73840e98952dd3f7c005fcec44c971455da179eb.zip | |
Refactor IpcFacade to DaemonRpc and JsonRpcWs to JsonRpcTransport
Diffstat (limited to 'app/components')
| -rw-r--r-- | app/components/Account.js | 2 | ||||
| -rw-r--r-- | app/components/Login.js | 2 | ||||
| -rw-r--r-- | app/components/SelectLocation.js | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/app/components/Account.js b/app/components/Account.js index fc72ff5b30..f8ea3dc19b 100644 --- a/app/components/Account.js +++ b/app/components/Account.js @@ -8,7 +8,7 @@ import styles from './AccountStyles'; import Img from './Img'; import { formatAccount } from '../lib/formatters'; -import type { AccountToken } from '../lib/ipc-facade'; +import type { AccountToken } from '../lib/daemon-rpc'; export type AccountProps = { accountToken: AccountToken, diff --git a/app/components/Login.js b/app/components/Login.js index dd297c8e9c..d15681c58b 100644 --- a/app/components/Login.js +++ b/app/components/Login.js @@ -11,7 +11,7 @@ import styles from './LoginStyles'; import { colors } from '../config'; import type { AccountReduxState } from '../redux/account/reducers'; -import type { AccountToken } from '../lib/ipc-facade'; +import type { AccountToken } from '../lib/daemon-rpc'; export type Props = { account: AccountReduxState, diff --git a/app/components/SelectLocation.js b/app/components/SelectLocation.js index 5864ed55a3..14d0a04f9c 100644 --- a/app/components/SelectLocation.js +++ b/app/components/SelectLocation.js @@ -14,7 +14,7 @@ import type { RelayLocationRedux, RelayLocationCityRedux, } from '../redux/settings/reducers'; -import type { RelayLocation } from '../lib/ipc-facade'; +import type { RelayLocation } from '../lib/daemon-rpc'; export type SelectLocationProps = { settings: SettingsReduxState, |
