4Lajf
04/06/2022, 10:59 AMjs
const udpateEmail = async () => {
const { user, error } = await supabase.auth.update({ email: 'new@email.com' });
console.log(user, error);
};
And what i get back is the usual user object and no errors at all. But despite that i just won't update on the DB.Needle
04/06/2022, 10:59 AM/title
command!
We have solved your problem?
Click the button below to archive it.fernandolguevara
04/06/2022, 11:19 AMjs
const { user, error } = await supabase.auth.update({
data: { hello: 'world' }
})
`
Needle
04/06/2022, 11:19 AM4Lajf
04/06/2022, 11:42 AMsilentworks
04/06/2022, 1:50 PM