diff --git a/site/src/components/Game.vue b/site/src/components/Game.vue index 77b917a..6db9f6c 100644 --- a/site/src/components/Game.vue +++ b/site/src/components/Game.vue @@ -88,6 +88,7 @@ const timestamp = useTimestamp({ }); watch(props.game, (now) => { initTimeLeft.value = now.deadline - timestamp.value; + console.log(initTimeLeft, now.deadline, timestamp.value); }); const moveColor = computed(() => timeLeft.value > 3000 ? 'primary' : 'red');