Skip to content

Commit

Permalink
feat: ws electron issue fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Nishchit14 committed Feb 29, 2024
1 parent e9fb328 commit 4dbfacb
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ const createHandleConnectionExecutor: TStoreSlice<

// on open
executor.onOpen(() => {
console.log('The connection is now open...');
state.changePlaygroundConnectionState(EConnectionState.Open);
});

Expand All @@ -77,7 +76,6 @@ const createHandleConnectionExecutor: TStoreSlice<
// set executor in playground
state.setPlaygroundExecutor(executor);
} catch (error) {
console.log(error);
console.info({
API: 'websocket.connect',
error,
Expand Down Expand Up @@ -117,7 +115,6 @@ const createHandleConnectionExecutor: TStoreSlice<
*/
const state = get();
const { playground } = state;
console.log(playground, 'playground...');
if (
playground &&
playground.executor &&
Expand Down

0 comments on commit 4dbfacb

Please sign in to comment.