diff --git a/frontend/src/pages/FightPage.vue b/frontend/src/pages/FightPage.vue index 1576fce..e51fea8 100644 --- a/frontend/src/pages/FightPage.vue +++ b/frontend/src/pages/FightPage.vue @@ -528,11 +528,9 @@ onMounted(async () => { if (isLive.value) { startPolling({ onFinished: () => stopHumanPolling(), onTimeout: () => stopHumanPolling(), keepLive: isHumanFight.value }) - if (isHumanFight.value) { - wireSSE() - // Scene init + human polling are handled by the liveFightData watcher - // (avoids double init if loadFight already set liveFightData) - } + wireSSE() + // Scene init + human polling are handled by the liveFightData watcher + // (avoids double init if loadFight already set liveFightData) } })