@imposium-hub/components 1.32.4 → 1.33.0

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/Entry.ts CHANGED
@@ -75,7 +75,7 @@ import {login, clearCachedAuth} from './redux/actions/auth';
75
75
  import access from './redux/reducers/access';
76
76
  import {
77
77
  cacheAccessData, clearCachedAccessList, storyAdded,
78
- storyNameMutated, storyDeleted
78
+ storyNameMutated, orgNameMutated, storyDeleted
79
79
  } from './redux/actions/access';
80
80
  import { updateFilters } from './redux/actions/asset-filters';
81
81
  import {
@@ -187,6 +187,7 @@ export {
187
187
  clearCachedAccessList,
188
188
  storyAdded,
189
189
  storyNameMutated,
190
+ orgNameMutated,
190
191
  storyDeleted,
191
192
 
192
193
  updateFilters,
@@ -396,7 +396,7 @@ class StoryPreviewer extends React.PureComponent<IStoryPreviewerProps, IStoryPre
396
396
  });
397
397
  };
398
398
 
399
- api.getExperience(experienceId, true).then((resVideo) => {
399
+ const pollingPromise = api.getExperience(experienceId, true).then((resVideo) => {
400
400
 
401
401
  if (this.evtHandlers.gotExperience) {
402
402
  this.evtHandlers.gotExperience(resVideo);
@@ -408,6 +408,7 @@ class StoryPreviewer extends React.PureComponent<IStoryPreviewerProps, IStoryPre
408
408
  onError(copy.runExpError.replace('[expId]', experienceId));
409
409
  }
410
410
  });
411
+
411
412
  });
412
413
  }).catch((e) => {
413
414
  this.resetState();