Replies: 2 comments 1 reply
-
shouldn't be the case. do you have a reproduction? |
Beta Was this translation helpful? Give feedback.
1 reply
-
I think there are actually two errors here. The one that you describe, but it also seems to me that the current error message is shown on the built-in page just doesn't make sense: next-auth/src/core/pages/signin.tsx Line 51 in 4dcdb62 This error is shown when the e-mail wasn't sent, why would we say check your inbox... I'll convert this to an actual bug report. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone. I am a bit confused about errors redirect.
I have a custom sign-in page,
/login
, and by reading the docs, I understand that Sign-in page errors should redirect to/login?error=
.I tried to sign-in with a broken Email provider and got redirected to
/login?error=EmailSignin
, good.Now, I tried adding a custom error page,
/error
, to handle other errors like expired sign-in link, etc.After adding the custom error page, I no longer get redirected to
/login?error=EmailSignin
, but to/error?error=EmailSignin
.Is this the expected behavior? I know I can use
redirect: false
and treat the errors on the sign-in page, but I think the documentation says sign-in page errors should redirect to itself.Beta Was this translation helpful? Give feedback.
All reactions