conditionally adds content-type json header if json is sent with request

This commit is contained in:
Keviin Åberg Kultalahti 2021-01-26 11:51:42 +01:00
parent 5d29d68897
commit b7006e097c
1 changed files with 2 additions and 1 deletions

View File

@ -20,9 +20,10 @@ const makeApiCall = async ({ method, url, body, json = true }) => {
const requestBody = json ? JSON.stringify(body) : body
let headers = {
Accept: "application/json",
"Content-Type": "application/json",
...(json && { "Content-Type": "application/json" }),
"x-budibase-app-id": window["##BUDIBASE_APP_ID##"],
}
if (!window["##BUDIBASE_IN_BUILDER##"]) {
headers["x-budibase-type"] = "client"
}