refactor: remove debug logging from handleConnected and renderRoom functions
All checks were successful
Build and Push Docker Image / docker (push) Successful in 7s

This commit is contained in:
2025-09-05 15:26:16 +02:00
parent de2c7b0a3a
commit 74d9ae81e6
2 changed files with 0 additions and 14 deletions

View File

@@ -33,7 +33,6 @@ function shortName(id) {
}
export function handleConnected(msg) {
console.debug('handleConnected', msg);
state.playerId = msg.playerId;
try {
if (msg.playerId) localStorage.setItem('playerId', msg.playerId);
@@ -168,7 +167,6 @@ export function onMessage(ev) {
switch (msg.type) {
case 'resume_result': {
if (msg.ok) {
console.debug('handleResumeResult', msg);
if (msg.playerId) {
state.playerId = msg.playerId;
try {