Fix missing FEATURES global

This commit is contained in:
Michael Shilman 2021-10-18 20:00:24 +08:00
parent 03149e8253
commit d18d510407
2 changed files with 2 additions and 2 deletions

View File

@ -509,7 +509,7 @@ export const init: ModuleFn = ({
}
);
if (FEATURES.storyStoreV7) {
if (FEATURES?.storyStoreV7) {
indexClient = new StoryIndexClient();
indexClient.addEventListener(INVALIDATE, () => fullAPI.fetchStoryList());
await fullAPI.fetchStoryList();

View File

@ -358,7 +358,7 @@ export class StoryStore<TFramework extends AnyFramework> {
(story) => ({
...pick(story, ['id', 'name', 'title']),
importPath: this.storyIndex.stories[story.id].importPath,
...(!FEATURES.breakingChangesV7 && {
...(!FEATURES?.breakingChangesV7 && {
kind: story.title,
story: story.name,
parameters: {