From 22cc0e8544bfa9e3b02110d16b1be5c6e9ab522f Mon Sep 17 00:00:00 2001 From: Kacper Michalik Date: Fri, 13 Oct 2023 10:01:05 +0200 Subject: [PATCH] fix:lint --- packages/desktop/src/renderer/sagas/socket/socket.saga.ts | 2 +- .../src/store/init/startConnection/startConnection.saga.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/desktop/src/renderer/sagas/socket/socket.saga.ts b/packages/desktop/src/renderer/sagas/socket/socket.saga.ts index b0d55b1a3b..63964f1721 100644 --- a/packages/desktop/src/renderer/sagas/socket/socket.saga.ts +++ b/packages/desktop/src/renderer/sagas/socket/socket.saga.ts @@ -60,7 +60,7 @@ function subscribeSocketLifecycle(socket?: Socket) { console.log('closing socket connection') emit(socketActions.suspendConnection()) }) - return () => { } + return () => {} }) } diff --git a/packages/mobile/src/store/init/startConnection/startConnection.saga.ts b/packages/mobile/src/store/init/startConnection/startConnection.saga.ts index 8d49a2c216..8d867c8e78 100644 --- a/packages/mobile/src/store/init/startConnection/startConnection.saga.ts +++ b/packages/mobile/src/store/init/startConnection/startConnection.saga.ts @@ -56,7 +56,7 @@ function subscribeSocketLifecycle(socket: Socket, dataPort: number) { console.log('closing socket connection') emit(initActions.suspendWebsocketConnection()) }) - return () => { } + return () => {} }) }