diff --git a/src/pages/UserVerification.tsx b/src/pages/UserVerification.tsx index 5747040..6e8a015 100644 --- a/src/pages/UserVerification.tsx +++ b/src/pages/UserVerification.tsx @@ -4,29 +4,28 @@ import { useNavigate } from 'react-router-dom'; import { Box, Typography } from '@mui/material' import SumsubWebSdk from '@sumsub/websdk-react' -const UserVerification = () => { +const config = { + lang: "en", //language of WebSDK texts and comments (ISO 639-1 format) + theme: "light", +} +const options = { + addViewportTag: false, + adaptIframeHeight: true +} + +const UserVerification = () => { const [userId, setUserId] = useState(''); const [applicationSubmitted, setApplicationSubmitted] = useState(false); const navigate = useNavigate(); useEffect(()=>{ - if (applicationSubmitted) { + if (applicationSubmitted && userId !== '') { navigate(`/sign-with-nitro-key/${userId}`) } }, [applicationSubmitted, userId, navigate]); - const config = { - lang: "en", //language of WebSDK texts and comments (ISO 639-1 format) - theme: "light", - } - - const options = { - addViewportTag: false, - adaptIframeHeight: true - } - // TODO: Implement const accessTokenExpirationHandler = async () => { alert("Please renew token");