Getting email_address_invalid from supabase
I have default supabase, dont have any extra settings. When trying to sign up with email I get
My request:
Why i getting this error, AIs say its something with setting but it worked before. Is it because of triggers?
{
"code": 400,
"error_code": "email_address_invalid",
"msg": "Email address \"example@gmail.com\" is invalid"
}My request:
{
"email": "example@gmail.com",
"password": "Password123",
"options": {
"data": {
"name": "Someone",
"company_name": "My Company",
"phone_num": "1234567890",
"contact_email": "contact@company.com",
"website": "https://example.com"
}
}
}Why i getting this error, AIs say its something with setting but it worked before. Is it because of triggers?