diff --git a/src/utils/axios.ts b/src/utils/axios.ts index 1216957..12f7632 100644 --- a/src/utils/axios.ts +++ b/src/utils/axios.ts @@ -6,10 +6,10 @@ import { fetch } from "../state"; function getHeaders(): AxiosHeaders { const { token } = fetch(); const headers = new AxiosHeaders({ - ["Content-Type"]: "application/json" + "Content-Type": "application/json" }); if (token) { - headers["Authorization"] = `Tuitio ${token}`; + headers.Authorization = `Tuitio ${token}`; } return headers; }