diff --git a/frontend/src/pages/FightPage.vue b/frontend/src/pages/FightPage.vue index 6cd79ae..e624e1e 100644 --- a/frontend/src/pages/FightPage.vue +++ b/frontend/src/pages/FightPage.vue @@ -84,10 +84,8 @@ function applyChallenge(data: any, receivedAt?: number) { humanChoices.value = data.choices || [] humanAnswer.value = '' humanSubmitted.value = false - // Mobile: 4 second timer for quick tap choices; desktop: full remaining time - humanTimer.value = isMobile.value ? 4 : Math.ceil(remaining / 1000) + humanTimer.value = Math.ceil(remaining / 1000) startTimer() - if (!isMobile.value) nextTick(() => answerInput.value?.focus()) } function submitChoice(choice: string) { @@ -645,15 +643,16 @@ function stopAutoBattle() {