Skip to content

Commit

Permalink
fix: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
axel7083 committed Jan 30, 2024
1 parent 18160ca commit b2de7bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/managers/playground.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export class PlayGroundManager {
// post the data
post_req.write(post_data);
post_req.end();
post_req.on('error', (error) => {
post_req.on('error', error => {
console.error('connection on error.');
const q = this.queries.get(query.id);
q.error = `Something went wrong while trying to request model.${String(error)}`;
Expand Down

0 comments on commit b2de7bc

Please sign in to comment.