From 58c9c7818479b8eeab8d23eabf0279fc1cddfe83 Mon Sep 17 00:00:00 2001 From: Valentin Palkovic Date: Mon, 8 Apr 2024 16:54:24 +0200 Subject: [PATCH] Cleanup --- code/addons/controls/src/preset.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/addons/controls/src/preset.ts b/code/addons/controls/src/preset.ts index a9593da44adc..88cfe074eaf9 100644 --- a/code/addons/controls/src/preset.ts +++ b/code/addons/controls/src/preset.ts @@ -1,11 +1,9 @@ import type { Options } from '@storybook/types'; import type { Channel } from '@storybook/channels'; import { initFileSearchChannel } from './server-channel/file-search-channel'; -import { initCreateNewStoryChannel } from './server-channel/create-new-story-channel'; // eslint-disable-next-line @typescript-eslint/naming-convention export const experimental_serverChannel = async (channel: Channel, options: Options) => { - initCreateNewStoryChannel(channel, options); initFileSearchChannel(channel, options); return channel;