Skip to content

Commit

Permalink
fix: process undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoninJuquel committed Dec 20, 2023
1 parent 7b40e21 commit c4d3b4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/globals.ts
Expand Up @@ -9,7 +9,7 @@ export const VALIDATE_TOKEN_ENDPOINT = `${OAUTH2_PREFIX}/validate`;
export const twitchAxios = axios.create({
baseURL: API_PREFIX,
headers: {
"Client-ID": process?.env?.TWITCH_CLIENT_ID || "",
Authorization: `Bearer ${process?.env?.TWITCH_ACCESS_TOKEN || ""}`,
"Client-ID": "",
Authorization: "",
},
});

0 comments on commit c4d3b4e

Please sign in to comment.