diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2020-02-18 15:10:51 +0100 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2020-02-19 11:42:52 +0100 |
| commit | 92332c526ba15f7c116630a18d9631973bfd6447 (patch) | |
| tree | 7ae200021cbb6e78237619f7ff9b5c397161983d /gui/src | |
| parent | eab077d4c913631f9dfcfe53da921c1cafc2b162 (diff) | |
| download | mullvadvpn-92332c526ba15f7c116630a18d9631973bfd6447.tar.xz mullvadvpn-92332c526ba15f7c116630a18d9631973bfd6447.zip | |
Fix linter problems caused by prettier/prettier
Diffstat (limited to 'gui/src')
| -rw-r--r-- | gui/src/main/jsonrpc-client.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/src/main/jsonrpc-client.ts b/gui/src/main/jsonrpc-client.ts index 357d085a14..3b33f8f566 100644 --- a/gui/src/main/jsonrpc-client.ts +++ b/gui/src/main/jsonrpc-client.ts @@ -275,7 +275,7 @@ export default class JsonRpcClient<T> extends EventEmitter { if (message.type === 'notification') { this.onNotification(message as IJsonRpcNotification); } else { - this.onReply(message as (IJsonRpcErrorResponse | IJsonRpcSuccess)); + this.onReply(message as IJsonRpcErrorResponse | IJsonRpcSuccess); } } |
