1
0
Fork 0
mirror of synced 2024-10-01 17:47:46 +13: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 e1a1d47238
commit bed1f0e092

View file

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