Fix issue with create app endpoint sending json content type header

This commit is contained in:
Andrew Kingston 2022-01-24 19:06:18 +00:00
parent 18d5d66a71
commit 43e4fcfd01
1 changed files with 1 additions and 0 deletions

View File

@ -76,6 +76,7 @@ export const buildAppEndpoints = API => ({
return await API.post({
url: "/api/applications",
body: app,
json: false,
})
},