Merge pull request #17100 from mozilla/fxa-9838

fix(input): Show text keyboard for recovery code input
This commit is contained in:
Vijay Budhram 2024-06-10 13:27:41 -04:00 коммит произвёл GitHub
Родитель cde378a085 c1cd08f326
Коммит e682d570e5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -11,6 +11,7 @@ import CardHeader from '../../../components/CardHeader';
import LinkExternal from 'fxa-react/components/LinkExternal';
import FormVerifyCode, {
FormAttributes,
InputModeEnum,
} from '../../../components/FormVerifyCode';
import GleanMetrics from '../../../lib/glean';
import AppLayout from '../../../components/AppLayout';
@ -53,7 +54,8 @@ const SigninRecoveryCode = ({
const formAttributes: FormAttributes = {
inputFtlId: 'signin-recovery-code-input-label',
inputLabelText: 'Enter 10-digit backup authentication code',
pattern: '[0-9]{10}',
inputMode: InputModeEnum.text,
pattern: '[a-zA-Z0-9]',
maxLength: 10,
submitButtonFtlId: 'signin-recovery-code-confirm-button',
submitButtonText: 'Confirm',