Browse Source

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

j8
vp8x8 5 years ago
parent
commit
74f7c4141f
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      react/features/billing-counter/functions.js

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

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

Loading…
Cancel
Save