From 74f7c4141fe76e25fff9f61adf48ef0e93af763a Mon Sep 17 00:00:00 2001 From: vp8x8 <37841821+vp8x8@users.noreply.github.com> Date: Fri, 28 Aug 2020 15:43:14 +0300 Subject: [PATCH] fix(vpaas): Fix billing counter auth (#7595) --- react/features/billing-counter/functions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/features/billing-counter/functions.js b/react/features/billing-counter/functions.js index 8b8122b63..cdf1c28a4 100644 --- a/react/features/billing-counter/functions.js +++ b/react/features/billing-counter/functions.js @@ -54,7 +54,7 @@ export async function sendCountRequest({ baseUrl, billingId, jwt, tenant }: { }) { const fullUrl = `${baseUrl}/${encodeURIComponent(tenant)}/${billingId}`; const headers = { - 'Authorization': `Bearer: ${jwt}` + 'Authorization': `Bearer ${jwt}` }; try {