I expect to have my reset password flow like this
1. request reset password email
2. receive the email and proceed to the reset link
3. redirected to the reset page with some token to verify when updating password.
Current flow is after I clicked the reset link and redirected to the page.
However, I got authenticated which I don't want it to happen but I planned to custom the auth status like the user has not been really authenticated in the frontend if event === 'PASSWORD_RECOVERY'.
Unfortunately I only found 'SIGNED_IN' so far so the condition handler never worked.
I am using Next.js btw. Any suggestion? Thank you.