Auth Code: Use correct numeric keypad (#1323)

This commit is contained in:
Alexander Zinchuk 2021-07-27 20:14:02 +03:00
parent 49c53817ce
commit 86275ebf3c

View File

@ -109,8 +109,8 @@ const AuthCode: FC<StateProps & DispatchProps> = ({
onInput={onCodeChange}
value={code}
error={authError && lang(authError)}
autoComplete="off"
inputMode="decimal"
autoComplete="one-time-code"
inputMode="numeric"
/>
{authIsLoading && <Loading />}
</div>