From 5d12ef00554e1ba4e0336b5ef0ea8aa829f2b6f9 Mon Sep 17 00:00:00 2001 From: navaneeth Date: Fri, 7 May 2021 15:57:17 +0530 Subject: [PATCH] Changed default auth headers --- frontend/src/_helpers/auth-header.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/_helpers/auth-header.js b/frontend/src/_helpers/auth-header.js index 41e8639de1..3d5c489f69 100644 --- a/frontend/src/_helpers/auth-header.js +++ b/frontend/src/_helpers/auth-header.js @@ -9,5 +9,7 @@ export function authHeader() { 'Content-Type': 'application/json' }; } - return {}; + return { + 'Content-Type': 'application/json' + }; }