@verdocs/js-sdk 4.2.92 → 4.2.93

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -1325,8 +1325,9 @@ class VerdocsEndpoint {
1325
1325
  }
1326
1326
  else {
1327
1327
  // Required for legacy calls to rForm
1328
- this.api.defaults.headers.common.signer = token;
1329
- this.api.defaults.headers.common.Authorization = `Bearer ${token}`;
1328
+ this.api.defaults.headers.common.signer = `Bearer ${token}`;
1329
+ // TODO: Once we confirm rForm doesn't react badly to this, we can switch over
1330
+ // this.api.defaults.headers.common.Authorization = `Bearer ${token}`;
1330
1331
  }
1331
1332
  if (this.sessionType === 'user') {
1332
1333
  window?.console?.debug('[JS_SDK] Loading current profile...', this.endpointId, this.sub, session.sub);