send JSON string instead of object

This commit is contained in:
Sebastian 2025-11-18 09:40:55 +00:00
parent 1eb70e2734
commit e3a923eb6f

View file

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