diff --git a/src/components/ImageStack/__stories__/ImageStack.stories.tsx b/src/components/ImageStack/__stories__/ImageStack.stories.tsx index 36ac667b4a..cf5204c4ac 100644 --- a/src/components/ImageStack/__stories__/ImageStack.stories.tsx +++ b/src/components/ImageStack/__stories__/ImageStack.stories.tsx @@ -3,7 +3,6 @@ import React from 'react'; import {faker} from '@faker-js/faker/locale/en'; import type {Meta, StoryFn} from '@storybook/react'; -import {Menu} from '../../Menu'; import {Popover} from '../../Popover'; import {UserAvatar, UserAvatarSize} from '../../UserAvatar'; import {ImageStack} from '../ImageStack'; @@ -57,16 +56,9 @@ const Template: StoryFn = (args) => { - {items.map((item) => ( - - {item.name} - - ))} - + + Somehow display list of all other items {items.map(({name}) => name).join(', ')} + } >