simplöify captchas

This commit is contained in:
itsrubberduck
2025-10-18 12:58:41 +02:00
parent 267d2d41f8
commit e7f5749235

View File

@@ -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]