We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 641bd90 commit 2c12891Copy full SHA for 2c12891
src/routes/projectReports/LookRun.js
@@ -65,7 +65,10 @@ LookApi.prototype.callApi = function (endpoint, body) {
65
let newReq = null;
66
if (body) {
67
newReq = axios.post(endpoint, body, {
68
- headers: { 'Content-Type': 'application/json', 'Authorization': `token ${token}` }
+ headers: {
69
+ 'Content-Type': 'application/json',
70
+ Authorization: `token ${token}`,
71
+ },
72
});
73
} else {
74
newReq = axios.get(endpoint);
0 commit comments