cyborg31
07/26/2022, 3:12 PMYou must provide either an email, phone number, a third-party provider or OpenID Connect.
Can someone please point me into the right direction what I am doing wrong? I'm sending email and pw and have not found any setting I could change within supabase to solve this (using supabase cloud, not on-prem).Needle
07/26/2022, 3:12 PMgaryaustin
07/26/2022, 3:14 PMcyborg31
07/26/2022, 3:18 PMlogin: async ({ email, password }) => {
const { user, error } = await supabaseClient.auth.signIn({
email: email,
password,
});
if (error) {
return Promise.reject(error);
}
if (user) {
return Promise.resolve();
}
},Needle
07/26/2022, 3:28 PMgaryaustin
07/26/2022, 3:29 PM