From e7f57492359d1a1563d6ee75bfbd576be8e95d9e Mon Sep 17 00:00:00 2001 From: itsrubberduck Date: Sat, 18 Oct 2025 12:58:41 +0200 Subject: [PATCH] =?UTF-8?q?simpl=C3=B6ify=20captchas?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/pages/index.vue | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/app/pages/index.vue b/app/pages/index.vue index 5715d93..b92a360 100644 --- a/app/pages/index.vue +++ b/app/pages/index.vue @@ -1582,8 +1582,8 @@ const CAPTCHA_CHALLENGES: CaptchaChallenge[] = [ }, { id: 'atc-meaning', - prompt: 'What does ATC stand for?', - answers: ['air traffic control'], + prompt: 'What does the A in ATC stand for?', + answers: ['air', 'air traffic control'], }, { id: 'affirm', @@ -1593,7 +1593,7 @@ const CAPTCHA_CHALLENGES: CaptchaChallenge[] = [ { id: 'roger-copy', prompt: 'Which word means “I received your transmission” on the radio?', - answers: ['roger'], + answers: ['roger', 'roger that', 'roger copy','copy' ], }, { id: 'wilco', @@ -1603,7 +1603,7 @@ const CAPTCHA_CHALLENGES: CaptchaChallenge[] = [ { id: 'niner', prompt: 'How do pilots say the number 9 on the radio?', - answers: ['niner'], + answers: ['niner','nine'], }, { id: 'phonetic-alpha', @@ -1615,11 +1615,6 @@ const CAPTCHA_CHALLENGES: CaptchaChallenge[] = [ prompt: 'What is the NATO phonetic word for the letter “B”?', answers: ['bravo'], }, - { - id: 'phonetic-foxtrot', - prompt: 'What is the NATO phonetic word for the letter “F”?', - answers: ['foxtrot'], - }, ] const DEFAULT_CAPTCHA = CAPTCHA_CHALLENGES[0]