diff --git a/app/requests.ts b/app/requests.ts index 4579c6ad..d38a91fd 100644 --- a/app/requests.ts +++ b/app/requests.ts @@ -45,9 +45,7 @@ const makeRequestParam = ( function getHeaders() { const accessStore = useAccessStore.getState(); - const headers = { - Authorization: "", - }; + let headers: Record = {}; const makeBearer = (token: string) => `Bearer ${token.trim()}`; const validString = (x: string) => x && x.length > 0;