diff --git a/site/src/components/Game.vue b/site/src/components/Game.vue index bdacbbf..b2c1434 100644 --- a/site/src/components/Game.vue +++ b/site/src/components/Game.vue @@ -88,8 +88,7 @@ const timestamp = useTimestamp({ }); watch(() => props.game.deadline, (now) => { initTimeLeft.value = now - timestamp.value; - console.log(initTimeLeft, now, timestamp.value); -}); +}, {immediate: true}); const moveColor = computed(() => timeLeft.value > 3000 ? 'primary' : 'red'); function attack(left: boolean) {