From c0cf7bbda2036289dd92450165a4b906211137b3 Mon Sep 17 00:00:00 2001 From: Raymond Hear Date: Tue, 20 May 2025 17:27:44 -0400 Subject: [PATCH] fix: use Authorization header --- app/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api.js b/app/api.js index f271ea2e..2d1238c2 100644 --- a/app/api.js +++ b/app/api.js @@ -43,7 +43,7 @@ function post(obj, bearerToken) { 'Content-Type': 'application/json' }; if (bearerToken) { - h['Authentication'] = `Bearer ${bearerToken}`; + h['Authorization'] = `Bearer ${bearerToken}`; } return { method: 'POST',