Skip to content

Commit

Permalink
remove debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Tideman committed Aug 21, 2024
1 parent 5fd83ee commit 8e84963
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion snakes/src/lib/snake/Round.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ export default class SnakeRound {
drawApple() {
const appleSize = this.cellSize;
this.context.fillStyle = '#00FF00';
debugger
this.context.fillRect(this.apple.x * appleSize, this.apple.y * appleSize, appleSize, appleSize);
}

Expand Down
1 change: 0 additions & 1 deletion snakes/src/routes/[id]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
body: JSON.stringify({ action: 'playerRegister', name, workflowId })
});
const result = await response.json();
debugger;
};
const playersRegister = async () => {
Expand Down

0 comments on commit 8e84963

Please sign in to comment.