diff --git a/lib/core/src/client/preview/start.tsx b/lib/core/src/client/preview/start.tsx index 08e3713e042..1fbf0605e8c 100644 --- a/lib/core/src/client/preview/start.tsx +++ b/lib/core/src/client/preview/start.tsx @@ -31,7 +31,7 @@ function getOrCreateChannel() { return channel; } -function getClientApi(channel: Channel, decorateStory: DecorateStoryFunction) { +function getClientApi(decorateStory: DecorateStoryFunction, channel?: Channel) { let storyStore: StoryStore; let clientApi: ClientApi; if ( @@ -59,7 +59,7 @@ export default function start( { decorateStory }: { decorateStory?: DecorateStoryFunction } = {} ) { const channel = getOrCreateChannel(); - const { clientApi, storyStore } = getClientApi(channel, decorateStory); + const { clientApi, storyStore } = getClientApi(decorateStory, channel); const configApi = new ConfigApi({ storyStore }); const storyRenderer = new StoryRenderer({ render, channel, storyStore });