diff --git a/frontend/src/_helpers/auth-header.js b/frontend/src/_helpers/auth-header.js index 3d5c489f69..2bbac18790 100644 --- a/frontend/src/_helpers/auth-header.js +++ b/frontend/src/_helpers/auth-header.js @@ -5,7 +5,7 @@ export function authHeader() { const currentUser = authenticationService.currentUserValue; if (currentUser && currentUser.auth_token) { return { - Authorization: `${currentUser.auth_token}`, + Authorization: `Bearer ${currentUser.auth_token}`, 'Content-Type': 'application/json' }; }