You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When both email and phone number are provided during user signup, and:
Email confirmation is enabled
Phone confirmation is disabled
The phone number is incorrectly stored as null in the database. However, the same phone number can be successfully stored when using the updateUser method.
Signup function
value of formData.adminMobile: +919996381211
Update user function
value of formData.adminMobile: +919996381211
But in case of update it got updated in auth.users table
Steps to Reproduce
Configure system with:
Email confirmation: enabled
Phone confirmation: disabled
Attempt to create a new user with both email and phone number
Check the stored user data in the database
Attempt to update the same user with a phone number using updateUser
Current Behavior
During signup: Phone number is stored as null
During update: Phone number is stored correctly
Expected Behavior
Phone number should be stored correctly in both scenarios:
During initial user signup
During user update
Labels
bug
authentication
user-management
The text was updated successfully, but these errors were encountered:
When both email and phone number are provided during user signup, and:
The phone number is incorrectly stored as
null
in the database. However, the same phone number can be successfully stored when using theupdateUser
method.Signup function
Update user function
But in case of update it got updated in
auth.users
tableSteps to Reproduce
updateUser
Current Behavior
null
Expected Behavior
Phone number should be stored correctly in both scenarios:
Labels
The text was updated successfully, but these errors were encountered: