Skip to content

Commit

Permalink
fix(site): console.error instead of err
Browse files Browse the repository at this point in the history
  • Loading branch information
cor committed Sep 28, 2023
1 parent 0689582 commit ae5940b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/src/lib/Xterm.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
console.error("Terminal has not been initiated correctly prior to starting worker");
return;
}
console.err(err)
console.error(err)
terminal.write(JSON.stringify(err))
});
}
Expand Down

0 comments on commit ae5940b

Please sign in to comment.