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} onInput={onCodeChange}
value={code} value={code}
error={authError && lang(authError)} error={authError && lang(authError)}
autoComplete="off" autoComplete="one-time-code"
inputMode="decimal" inputMode="numeric"
/> />
{authIsLoading && <Loading />} {authIsLoading && <Loading />}
</div> </div>