Merge pull request #490 from sebampuero/fix-474

Fix registration error - Unprocessable entity 422
This commit is contained in:
Rohan Verma 2025-11-19 15:07:03 -08:00 committed by GitHub
commit f67d3b3104
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,7 +49,7 @@ export class AuthApiService {
} }
return baseApiService.post(`/auth/register`, registerResponse, { return baseApiService.post(`/auth/register`, registerResponse, {
body: parsedRequest.data, body: JSON.stringify(parsedRequest.data),
}); });
}; };
} }