kr4b5
07/21/2022, 3:41 PMhandleLogin(mail: string, pw: string) {
this.loading = true;
this.supabase.signIn(mail, pw).then((res) => {
console.log(res);
console.log(this.supabase.user)
alert('Logged in!');
}).catch((err) => {
console.log(err)
this.loading = false;
});
}
Console output:
Object { data: null, user: null, session: null, error: {…} }
null