From c4d3b4ecf3198e873b76525f7cfa565b11bf672f Mon Sep 17 00:00:00 2001 From: Somindras <57025128+AntoninJuquel@users.noreply.github.com> Date: Thu, 21 Dec 2023 00:06:46 +0100 Subject: [PATCH] fix: process undefined --- lib/globals.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/globals.ts b/lib/globals.ts index 1e972c2..1207879 100644 --- a/lib/globals.ts +++ b/lib/globals.ts @@ -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: "", }, });