My signup was working, and now, it's not anymore.....
# help
j
My signup was working, and now, it's not anymore... I get error 422 const { user, session, error } = await supabase.auth.signUp({ email: email, password: pass, }, { data: { pseudo: email.split('@')[0], niveau: niveau, institution: institution } } )
g
Do you get any other error info back? 422 on signup is used for sure if password or email is really bad (like empty string, null)
j
In the console I have: Failed to load resource: the server responded with a status of 422 ()
I'll try to log errror
Oh, there it is... I was just making dummy account to make some test and I didn't know supabase was looking for the security of my password, so I had a password of 5 characters... Dumb error...
Is there a place I can see every error to modify my own message in the frontend?
g
Source code, but it is hard slogging