1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00

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

View file

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