From e584a4ec823d515b3c256422c42944832e7891ae Mon Sep 17 00:00:00 2001 From: Nathan Bierema Date: Sun, 12 Jun 2022 21:34:20 -0400 Subject: [PATCH] stash --- packages/redux-devtools-remote/src/devTools.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/redux-devtools-remote/src/devTools.ts b/packages/redux-devtools-remote/src/devTools.ts index 759fa9e6..08c04a4a 100644 --- a/packages/redux-devtools-remote/src/devTools.ts +++ b/packages/redux-devtools-remote/src/devTools.ts @@ -281,7 +281,7 @@ class DevToolsEnhancer> { message.action = action as ActionCreatorObject[]; } // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion - this.socket!.transmit(this.socket!.id ? 'log' : 'log-noid', message); + void this.socket!.transmit(this.socket!.id ? 'log' : 'log-noid', message); } dispatchRemotely( @@ -415,7 +415,7 @@ class DevToolsEnhancer> { this.started = false; this.isMonitored = false; if (!this.socket) return; - this.socket.unsubscribe(this.channel!); + void this.socket.unsubscribe(this.channel!); this.socket.closeChannel(this.channel!); if (!keepConnected) { this.socket.disconnect();