diff --git a/code/lib/preview-api/src/modules/client-api/StoryStoreFacade.ts b/code/lib/preview-api/src/modules/client-api/StoryStoreFacade.ts index 616058590b9..d65e6aaca53 100644 --- a/code/lib/preview-api/src/modules/client-api/StoryStoreFacade.ts +++ b/code/lib/preview-api/src/modules/client-api/StoryStoreFacade.ts @@ -60,34 +60,33 @@ export class StoryStoreFacade { const storyEntries = Object.entries(this.entries); // Add the kind parameters and global parameters to each entry - const sortableV6: [StoryId, PreparedStory, Parameters, Parameters][] = - storyEntries.map(([storyId, { type, importPath, ...entry }]) => { - const exports = this.csfExports[importPath]; - const csfFile = store.processCSFFileWithCache( - exports, - importPath, - exports.default.title - ); + const sortableV6 = storyEntries.map(([storyId, { type, importPath, ...entry }]) => { + const exports = this.csfExports[importPath]; + const csfFile = store.processCSFFileWithCache( + exports, + importPath, + exports.default.title + ); - let storyLike: PreparedStory; - if (type === 'story') { - storyLike = store.storyFromCSFFile({ storyId, csfFile }); - } else { - storyLike = { - ...entry, - story: entry.name, - kind: entry.title, - componentId: toId(entry.componentId || entry.title), - parameters: { fileName: importPath }, - } as any; - } - return [ - storyId, - storyLike, - csfFile.meta.parameters, - this.projectAnnotations.parameters || {}, - ]; - }); + let storyLike: PreparedStory; + if (type === 'story') { + storyLike = store.storyFromCSFFile({ storyId, csfFile }); + } else { + storyLike = { + ...entry, + story: entry.name, + kind: entry.title, + componentId: toId(entry.componentId || entry.title), + parameters: { fileName: importPath }, + } as any; + } + return [ + storyId, + storyLike, + csfFile.meta.parameters, + this.projectAnnotations.parameters || {}, + ] as [StoryId, PreparedStory, Parameters, Parameters]; + }); // NOTE: the sortStoriesV6 version returns the v7 data format. confusing but more convenient! let sortedV7: IndexEntry[];