From d063d09aa713956d8b632f3862ba24dcf4d39c8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nicole=20miko=C5=82ajczyk?= Date: Tue, 21 Oct 2025 15:33:17 +0200 Subject: [PATCH] pl-fe: otp code autocomplete MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: nicole mikołajczyk --- .../pl-fe/src/features/auth-login/components/otp-auth-form.tsx | 2 +- packages/pl-fe/src/features/security/mfa/otp-confirm-form.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/pl-fe/src/features/auth-login/components/otp-auth-form.tsx b/packages/pl-fe/src/features/auth-login/components/otp-auth-form.tsx index d45214633..5d83f141a 100644 --- a/packages/pl-fe/src/features/auth-login/components/otp-auth-form.tsx +++ b/packages/pl-fe/src/features/auth-login/components/otp-auth-form.tsx @@ -63,7 +63,7 @@ const OtpAuthForm: React.FC = ({ mfa_token, small }) => { diff --git a/packages/pl-fe/src/features/security/mfa/otp-confirm-form.tsx b/packages/pl-fe/src/features/security/mfa/otp-confirm-form.tsx index 5e0f6dfe6..ef4f88015 100644 --- a/packages/pl-fe/src/features/security/mfa/otp-confirm-form.tsx +++ b/packages/pl-fe/src/features/security/mfa/otp-confirm-form.tsx @@ -98,7 +98,7 @@ const OtpConfirmForm: React.FC = () => { name='code' placeholder={intl.formatMessage(messages.codePlaceholder)} onChange={handleInputChange} - autoComplete='off' + autoComplete='one-time-code' disabled={isPending} value={state.code} type='text'