fix(vpaas): Fix billing counter auth (#7595)
This commit is contained in:
parent
4866ddc2ad
commit
74f7c4141f
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue