diff --git a/src/components/input/input.stories.js b/src/components/input/input.stories.js index c1f2284a0..32e2e5901 100644 --- a/src/components/input/input.stories.js +++ b/src/components/input/input.stories.js @@ -19,13 +19,9 @@ const elasticTextAreaConfig = { class: 'js-elastic-textarea', }; -// Inline stories disabled because when the same input element is rendered with -// different settings within the same file, React syncs all their properties. - /** @type {Meta} */ const meta = { title: 'Components/Input', - parameters: { docs: { story: { inline: false } } }, }; export default meta; @@ -82,7 +78,6 @@ export const ElasticTextarea = { }, parameters: { docs: { - story: { iframeHeight: '250px' }, source: { code: makeTwigInclude( '@cloudfour/components/input/input.twig', diff --git a/src/components/logo/logo.stories.js b/src/components/logo/logo.stories.js index 8a8cad91c..fd4fa1fbf 100644 --- a/src/components/logo/logo.stories.js +++ b/src/components/logo/logo.stories.js @@ -4,16 +4,9 @@ import logoTemplate from './logo.twig'; import './demo/alignment.scss'; const alignOptions = ['start', 'center', 'end']; -// This component's options rely on CSS custom properties, which are currently -// broken in the library we use for inlining Storybook stories. Until that issue -// is resolved, we must fallback to iframes for these stories. 🙈️ -// -// @see https://github.com/aknuds1/html-to-react/issues/144 - /** @type {Meta} */ const meta = { title: 'Components/Logo', - parameters: { docs: { story: { inline: false } } }, }; export default meta;