From 6825cdd50e4ba1c2a017a41297468e60196f48f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alonso=20Andrade=20Bl=C3=A1zquez?= <87668322+alonsoandradeblazquez@users.noreply.github.com> Date: Tue, 1 Jul 2025 16:40:46 +0200 Subject: [PATCH] Update index.ts Authorization header should be `Bearer ` instead of `Bearer: `. --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 40a1ed0..c7cb2fb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -33,7 +33,7 @@ if (BEARER_TOKEN !== undefined) { transportOptions = { requestInit: { headers: { - "Authorization": `Bearer: ${BEARER_TOKEN}` + "Authorization": `Bearer ${BEARER_TOKEN}` } } }