Skip to content

Commit

Permalink
Dummy change
Browse files Browse the repository at this point in the history
  • Loading branch information
siepra committed Sep 26, 2023
1 parent fe4d41b commit 9c92acc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/desktop/src/renderer/sagas/socket/socket.saga.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function subscribeSocketLifecycle(socket?: Socket) {
ReturnType<typeof socketActions.setConnected> | ReturnType<typeof socketActions.suspendConnection>
>(emit => {
socket?.on('connect', async () => {
console.log('websocket connected')
console.log('web socket connected')
emit(socketActions.setConnected())
})
socket?.on('disconnect', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function subscribeSocketLifecycle(socket: Socket, dataPort: number) {
ReturnType<typeof initActions.setWebsocketConnected> | ReturnType<typeof initActions.suspendWebsocketConnection>
>(emit => {
socket.on('connect', async () => {
console.log('websocket connected')
console.log('web socket connected')
emit(
initActions.setWebsocketConnected({
dataPort,
Expand Down

0 comments on commit 9c92acc

Please sign in to comment.