Skip to content

Commit

Permalink
Remove console traces/logs
Browse files Browse the repository at this point in the history
  • Loading branch information
lewish committed Feb 23, 2024
1 parent 4d855cf commit 9c63529
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions client/controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@ export class Controller {
}

handleKeyPress(event: KeyboardEvent) {
console.log(event.keyCode);

if (!event.ctrlKey && !event.metaKey && event.keyCode !== 13) {
store.currentTool.handleKey(
String.fromCharCode(event.keyCode),
Expand Down
1 change: 0 additions & 1 deletion client/store/canvas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ export class CanvasStore {
}

@action.bound setScratchLayer(layer: Layer) {
console.trace();
this.scratch = layer;
}

Expand Down

0 comments on commit 9c63529

Please sign in to comment.