From 11eff6b755819438bfdcdb2a0dee634b92e1743d Mon Sep 17 00:00:00 2001 From: Branden J Brown Date: Sat, 3 Feb 2024 13:20:19 -0600 Subject: [PATCH] remove game state logging --- site/src/App.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/site/src/App.vue b/site/src/App.vue index 37f988b..13d5a8b 100644 --- a/site/src/App.vue +++ b/site/src/App.vue @@ -43,7 +43,6 @@ const { status, data, send, open, close } = useWebSocket(`wss://${window const game = ref(null); const dealer = ref(null); watchEffect(() => { - console.log('data', data.value); if (data.value == null) { game.value = null; dealer.value = null;