Fixed sign in redirect on success
This commit is contained in:
parent
ef94349341
commit
e214ea53e7
@ -26,9 +26,11 @@ function AuthForm({ goBack, register }: AuthFormProps) {
|
|||||||
) : true
|
) : true
|
||||||
|
|
||||||
if (accountCreated) {
|
if (accountCreated) {
|
||||||
await handleSignIn(composeSignInBody(formData))
|
if (await handleSignIn(composeSignInBody(formData))) {
|
||||||
goBack()
|
goBack()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
})()
|
})()
|
||||||
}, [register, goBack, handleSignUp, handleSignIn])
|
}, [register, goBack, handleSignUp, handleSignIn])
|
||||||
|
|
||||||
@ -61,7 +63,7 @@ function AuthForm({ goBack, register }: AuthFormProps) {
|
|||||||
<Form.Check>
|
<Form.Check>
|
||||||
<Form.Check.Input type='checkbox' required />
|
<Form.Check.Input type='checkbox' required />
|
||||||
<Form.Check.Label>
|
<Form.Check.Label>
|
||||||
Я согласен с <a href={`${document.location.origin}/privacy_policy.pdf`} target='_blank' rel='noopener noreferrer'>условиями обработки персональных данных</a>
|
Я согласен с <a href={`${document.location.origin}/privacy_policy.pdf`} target='_blank'>условиями обработки персональных данных</a>
|
||||||
</Form.Check.Label>
|
</Form.Check.Label>
|
||||||
</Form.Check>
|
</Form.Check>
|
||||||
</Form.Group>
|
</Form.Group>
|
||||||
|
@ -22,7 +22,11 @@ function useSignIn() {
|
|||||||
|
|
||||||
if (token !== undefined) {
|
if (token !== undefined) {
|
||||||
setToken(token)
|
setToken(token)
|
||||||
|
|
||||||
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
return { handleSignIn, signInButton: button }
|
return { handleSignIn, signInButton: button }
|
||||||
|
@ -74,7 +74,11 @@ function useSend<R, T extends NonNullable<unknown>>(
|
|||||||
|
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
if (err instanceof Error && !isAborted(err)) {
|
if (err instanceof Error && !isAborted(err)) {
|
||||||
setError('Ошибка сети')
|
if (err instanceof TypeError) {
|
||||||
|
setError('Ошибка сети')
|
||||||
|
} else {
|
||||||
|
setError(err.message)
|
||||||
|
}
|
||||||
|
|
||||||
if (import.meta.env.DEV) {
|
if (import.meta.env.DEV) {
|
||||||
console.log(url, params, err)
|
console.log(url, params, err)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user