This issue comes from the axios library. In order to fix that, you have to pull out the data
property:
return this.httpService.post(...)
.pipe(
map(response => response.data),
);
This issue comes from the axios library. In order to fix that, you have to pull out the data
property:
return this.httpService.post(...)
.pipe(
map(response => response.data),
);