fix(vpaas): Fix billing counter auth (#7595)

This commit is contained in:
vp8x8 2020-08-28 15:43:14 +03:00 committed by GitHub
parent 4866ddc2ad
commit 74f7c4141f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 {