diff --git a/dotcom-rendering/src/components/ScrollableFeature.stories.tsx b/dotcom-rendering/src/components/ScrollableFeature.stories.tsx deleted file mode 100644 index 10280a1e6d..0000000000 --- a/dotcom-rendering/src/components/ScrollableFeature.stories.tsx +++ /dev/null @@ -1,41 +0,0 @@ -import { breakpoints } from '@guardian/source/foundations'; -import type { Meta, StoryObj } from '@storybook/react'; -import { discussionApiUrl } from '../../fixtures/manual/discussionApiUrl'; -import { trails } from '../../fixtures/manual/highlights-trails'; -import { FrontSection } from './FrontSection'; -import { ScrollableFeature } from './ScrollableFeature.importable'; - -export default { - title: 'Components/ScrollableFeature', - component: ScrollableFeature, - parameters: { - chromatic: { - viewports: [ - breakpoints.mobile, - breakpoints.tablet, - breakpoints.wide, - ], - }, - }, - args: { - trails, - containerPalette: undefined, - absoluteServerTimes: true, - imageLoading: 'eager', - }, -} as Meta; - -type Story = StoryObj; - -export const WithFrontSection = { - render: (args) => ( - - - - ), -} satisfies Story;