diff --git a/src/utils/http-utils.ts b/src/utils/http-utils.ts index ac00b72..c4bc537 100644 --- a/src/utils/http-utils.ts +++ b/src/utils/http-utils.ts @@ -18,7 +18,7 @@ export class HttpUtils return new Promise((resolve, reject) => { // Fetch request - fetch(`${Constants.API_URL}${node}`, {method: 'POST', body: body}).then(res => + fetch(`${Constants.API_URL}${node}`, {method: 'POST', body: JSON.stringify(body)}).then(res => { // Get response body text res.text().then(text =>