fix auth/register endpoint bug

This commit is contained in:
thierryverse 2025-11-20 08:20:47 +02:00
parent 0ea974316b
commit dff4b7ad6b

View file

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