master
Tudor Stanciu 2023-03-28 19:52:03 +03:00
parent 708c63907a
commit 425a6ccfc0
1 changed files with 2 additions and 2 deletions

View File

@ -6,10 +6,10 @@ import { fetch } from "../state";
function getHeaders(): AxiosHeaders { function getHeaders(): AxiosHeaders {
const { token } = fetch(); const { token } = fetch();
const headers = new AxiosHeaders({ const headers = new AxiosHeaders({
["Content-Type"]: "application/json" "Content-Type": "application/json"
}); });
if (token) { if (token) {
headers["Authorization"] = `Tuitio ${token}`; headers.Authorization = `Tuitio ${token}`;
} }
return headers; return headers;
} }