From 237bf087ce75e2f7496b1a4eb10f09bae6b884ec Mon Sep 17 00:00:00 2001 From: Gianni Ferullo Date: Tue, 7 Nov 2023 11:49:06 -0500 Subject: [PATCH] storybook: clean up gif.stories configuration --- packages/react-components/stories/gif.stories.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/packages/react-components/stories/gif.stories.tsx b/packages/react-components/stories/gif.stories.tsx index 91eb0c3c..e7cbd884 100644 --- a/packages/react-components/stories/gif.stories.tsx +++ b/packages/react-components/stories/gif.stories.tsx @@ -21,6 +21,7 @@ type GifDemoProps = Omit & { scale: string } + const GifDemo = ({ id, width, height, noLink, borderRadius, percentWidth, overlay, ...other }: GifDemoProps) => { const [gif, setGif] = useState() @@ -99,9 +100,11 @@ export const GifWithVideoOverlayFillVideo: Story = { args: { id: 'CWuHC9Nv5CKV8u7WeO', width: 340, - height: 200, + height: 340, hideAttribution: true, - overlay: (props: GifOverlayProps) => , + overlay: (props: GifOverlayProps) => ( + + ), }, }