From 4893495856dac817d7922f5c3e93971062354706 Mon Sep 17 00:00:00 2001 From: Raymond Luong Date: Thu, 7 Nov 2024 15:37:22 -0700 Subject: [PATCH] Fix storybook --- .../checking-input-form/checking-input-form.stories.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/SIL.XForge.Scripture/ClientApp/src/app/checking/checking/checking-answers/checking-input-form/checking-input-form.stories.ts b/src/SIL.XForge.Scripture/ClientApp/src/app/checking/checking/checking-answers/checking-input-form/checking-input-form.stories.ts index 899633a3d9..a9046bda12 100644 --- a/src/SIL.XForge.Scripture/ClientApp/src/app/checking/checking/checking-answers/checking-input-form/checking-input-form.stories.ts +++ b/src/SIL.XForge.Scripture/ClientApp/src/app/checking/checking/checking-answers/checking-input-form/checking-input-form.stories.ts @@ -6,7 +6,6 @@ import { I18nStoryModule } from 'xforge-common/i18n-story.module'; import { UICommonModule } from 'xforge-common/ui-common.module'; import { AttachAudioComponent } from '../../../attach-audio/attach-audio.component'; import { TextAndAudioComponent } from '../../../text-and-audio/text-and-audio.component'; -import { CheckingAudioRecorderComponent } from '../../checking-audio-recorder/checking-audio-recorder.component'; import { CheckingInputFormComponent } from './checking-input-form.component'; const meta: Meta = { @@ -15,7 +14,7 @@ const meta: Meta = { decorators: [ moduleMetadata({ imports: [CommonModule, UICommonModule, I18nStoryModule], - declarations: [TextAndAudioComponent, AttachAudioComponent, CheckingAudioRecorderComponent] + declarations: [TextAndAudioComponent, AttachAudioComponent] }) ] };