From 07d69276b997b436093f430c1967548d4b42efb2 Mon Sep 17 00:00:00 2001 From: sveisvei Date: Fri, 9 Dec 2016 22:09:25 +0100 Subject: [PATCH] fix indet --- frontend/src/data/applications-api.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 = {