pl-fe: otp code autocomplete

Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
nicole mikołajczyk
2025-10-21 15:33:17 +02:00
parent 727b1e4d0d
commit d063d09aa7
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ const OtpAuthForm: React.FC<IOtpAuthForm> = ({ mfa_token, small }) => {
<Input
name='code'
type='text'
autoComplete='off'
autoComplete='one-time-code'
autoFocus
required
/>

View File

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