Skip to content

Commit

Permalink
fix: prettier
Browse files Browse the repository at this point in the history
Signed-off-by: axel7083 <[email protected]>
  • Loading branch information
axel7083 committed Jan 30, 2024
1 parent 77c4514 commit 97b42da
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions packages/backend/src/managers/playground.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,11 +240,13 @@ export class PlayGroundManager {
}

sendQueriesState() {
this.webview.postMessage({
id: MSG_NEW_PLAYGROUND_QUERIES_STATE,
body: this.getQueriesState(),
}).catch((err) => {
console.error(`Something went wrong while emitting MSG_NEW_PLAYGROUND_QUERIES_STATE: ${String(err)}`);
})
this.webview
.postMessage({
id: MSG_NEW_PLAYGROUND_QUERIES_STATE,
body: this.getQueriesState(),
})
.catch(err => {
console.error(`Something went wrong while emitting MSG_NEW_PLAYGROUND_QUERIES_STATE: ${String(err)}`);
});
}
}

0 comments on commit 97b42da

Please sign in to comment.