Sfoglia il codice sorgente

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

master
vp8x8 5 anni fa
parent
commit
74f7c4141f
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      react/features/billing-counter/functions.js

+ 1
- 1
react/features/billing-counter/functions.js Vedi File

@@ -54,7 +54,7 @@ export async function sendCountRequest({ baseUrl, billingId, jwt, tenant }: {
54 54
 }) {
55 55
     const fullUrl = `${baseUrl}/${encodeURIComponent(tenant)}/${billingId}`;
56 56
     const headers = {
57
-        'Authorization': `Bearer: ${jwt}`
57
+        'Authorization': `Bearer ${jwt}`
58 58
     };
59 59
 
60 60
     try {

Loading…
Annulla
Salva