How to add additional data to the user with supabase signUpWithPassword in Nuxt?
If I am getting the user’s data with useSupabaseUser , I am not seeing the added data.
Here is my login function:
const { user, error } = await auth.signInWithPassword({
email: loginEmail.value,
password: loginPassword.value,
options: {
data: {
roles: 'user'
},
},
})
New contributor
hhhhhhh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.