Maus
08/25/2021, 3:32 PM'PASSWORD_RECOVERY'
event is not fired inside the onAuthStateChange
listener. I'm not quite sure at this moment what I can do to debug this further?
useEffect(() => {
const { data: authListener } = supabase.auth.onAuthStateChange(
(event, session) => {
console.log('event :>> ', event)
}
)
}, [])
Console output inside browser when clicking link:
event :>> SIGNED_IN
Maus
08/25/2021, 4:59 PMevent :>> PASSWORD_RECOVERY
actually does fire! I'll post un update once I know more, in case anybody ever finds this thread 😉