remove console.log into buildSnakesRows
Build and Push Docker Container / build-and-push (push) Successful in 5m2s

This commit is contained in:
2026-04-08 18:22:28 +02:00
parent ce3f9f1d82
commit 9a7f4de586
-2
View File
@@ -1,7 +1,5 @@
class SnakeTable { class SnakeTable {
static buildSnakesRows(turn, replay) { static buildSnakesRows(turn, replay) {
console.log(turn);
const currentTurn = Number(turn && turn.turn !== undefined ? turn.turn : 0); const currentTurn = Number(turn && turn.turn !== undefined ? turn.turn : 0);
const turns = replay && Array.isArray(replay.turns) ? replay.turns : []; const turns = replay && Array.isArray(replay.turns) ? replay.turns : [];
const lastSeenById = new Map(); const lastSeenById = new Map();