diff --git a/frontend/src/data/applications-api.js b/frontend/src/data/applications-api.js index 3b72645b2a..3bd5a85606 100644 --- a/frontend/src/data/applications-api.js +++ b/frontend/src/data/applications-api.js @@ -24,11 +24,11 @@ function storeApplicationMetaData (appName, key, value) { const data = {}; data[key] = value; return fetch(`${URI}/${appName}`, { - method: 'POST', - headers, - body: JSON.stringify(data), - credentials: 'include', - }).then(throwIfNotSuccess); + method: 'POST', + headers, + body: JSON.stringify(data), + credentials: 'include', + }).then(throwIfNotSuccess); } module.exports = {