diff --git a/src/utils/fetch.ts b/src/utils/fetch.ts index e317841c..82dba068 100644 --- a/src/utils/fetch.ts +++ b/src/utils/fetch.ts @@ -130,7 +130,7 @@ async function fetchApi( } const headers = new Headers({ - "CLX-Authorization": `token_type=urn:ietf:params:oauth:token-type:jwt-bearer, access_token=${accessToken}`, + Authorization: `Bearer ${accessToken}`, "Content-Type": "application/json", });