Fixed bug with value parsing if custom icon was used

This commit is contained in:
Paweł Malak
2021-11-19 14:06:38 +01:00
parent c2e9f82cd6
commit d13b890e16
4 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
export const applyAuth = () => {
const token = localStorage.getItem('token') || '';
return { Authorization_Flame: `Bearer ${token}` };
return { 'Authorization-Flame': `Bearer ${token}` };
};