Hello, how can you handle when the use is not conf...
# supabase-kt
u
Hello, how can you handle when the use is not confirmed in the first time they not confirmed the email. But the second time they want to confirmed the email. I'm using opt token to verify How can I make it when the token is expiring. Can i request a feature for exception for not confirmed email or adding session state to include the not_confirmed_email
I just use this
When there's no error in sign-up and if confirms allow - then the data is saved in the authentication database but not confirmed. So there must be an exception. Anyways, it runs when confirms not enable.
Screenshot from 2025-04-21 06-25-46.png
j
For sign in, just use the approach you are currently using, but you can also check the error code enum:
Copy code
exception.errorCode == AuthErrorCode.EmailNotConfirmed
And I'm not sure what the problem with sign up is?
u
ok tnx, i just taking the possibility when user tried to log in when they thought they're account is already confirmed.