From e3c3d4d420d81862b0a3781ccd8158f8aaa90e1a Mon Sep 17 00:00:00 2001 From: Dennis Postma Date: Sun, 9 Feb 2025 16:32:34 +0100 Subject: [PATCH] Removed debug --- src/stores/gameStore.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/stores/gameStore.ts b/src/stores/gameStore.ts index 385951d..4c81ca8 100644 --- a/src/stores/gameStore.ts +++ b/src/stores/gameStore.ts @@ -72,10 +72,6 @@ export const useGameStore = defineStore('game', { this.uiSettings.isCharacterProfileOpen = !this.uiSettings.isCharacterProfileOpen }, initConnection() { - console.log('initConnection') - console.log(config.server_endpoint) - console.log(config.environment) - console.log(config.environment === 'production') this.connection = io(config.server_endpoint, { secure: (config.environment === 'production'), withCredentials: true,