Raise sign in timeout of security key to 30 seconds.

This commit is contained in:
Clement Michaud 2019-12-05 20:16:50 +01:00 committed by Clément Michaud
parent cdb87522f4
commit 3aacb34571

View File

@ -31,7 +31,7 @@ export interface Props {
}
export default function (props: Props) {
const signInTimeout = 2;
const signInTimeout = 30;
const [state, setState] = useState(State.WaitTouch);
const style = useStyles();
const redirectionURL = useRedirectionURL();