© 2026 Hedgehog Software, LLC
const { data, error } = await supabase.auth.updateUser({ password: new_password})
const { error } = await supabaseSession.auth.verifyOtp({ email: email, token: code, type: "email", });
const { error } = await supabaseSession.auth.verifyOtp({ email: email, token: code, type: "recovery", }); if (!error) { const { data, error } = await supabase.auth.updateUser({ password: new_password}) }