how to add Display Name on the User Table under Auth

i cant find on the documentation how to add in the Display Name column

also am tring to fill a user table i created with some info below code but its not being filled when i sign up the user :
const onSignUpPress = async () => {
setLoading(true);
const { error } = await supabase.auth.signUp({
email: email,
password: password,
});

console.log(error);
if (error) Alert.alert(error.message);
setLoading(false);
const { data } = await supabase
.from("users")
.update({ name: Name, role: role, organization: organization })
.eq("email", email)
.select();
};
image.png
Was this page helpful?