@imposium-hub/components 1.38.12 → 1.38.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@imposium-hub/components",
3
- "version": "1.38.12",
3
+ "version": "1.38.13",
4
4
  "description": "React & Typescript component / asset library for Imposium front-ends",
5
5
  "main": "dist/components.js",
6
6
  "scripts": {
package/services/API.ts CHANGED
@@ -767,14 +767,14 @@ export default class API {
767
767
  } else if (res.data.output !== undefined) {
768
768
  if (isObjEmpty(res.data.output)) {
769
769
  this.experiencePollTimer = setTimeout(() => {
770
- this.pollForJob(config, resolve, reject);
770
+ this.pollForExperience(config, resolve, reject);
771
771
  }, this.pollingInterval);
772
772
  } else {
773
773
  resolve(res.data);
774
774
  }
775
775
  } else {
776
776
  this.experiencePollTimer = setTimeout(() => {
777
- this.pollForJob(config, resolve, reject);
777
+ this.pollForExperience(config, resolve, reject);
778
778
  }, this.pollingInterval);
779
779
  }
780
780
  })