diff --git a/packages/twenty-ui/src/navigation/menu-item/components/__stories__/MenuItemCommand.stories.tsx b/packages/twenty-ui/src/navigation/menu-item/components/__stories__/MenuItemCommand.stories.tsx index 9ca9025b8f9b..be80bb93baf4 100644 --- a/packages/twenty-ui/src/navigation/menu-item/components/__stories__/MenuItemCommand.stories.tsx +++ b/packages/twenty-ui/src/navigation/menu-item/components/__stories__/MenuItemCommand.stories.tsx @@ -35,6 +35,15 @@ export const Default: Story = { decorators: [ComponentDecorator], }; +export const WithDescription: Story = { + args: { + text: 'Menu item', + hotKeys: ['⌘', '1'], + description: 'Description', + }, + decorators: [ComponentDecorator], +}; + export const Catalog: CatalogStory = { args: { text: 'Menu item', @@ -56,15 +65,6 @@ export const Catalog: CatalogStory = { labels: (withIcon: boolean) => withIcon ? 'With left icon' : 'Without left icon', }, - { - name: 'withDescription', - values: [true, false], - props: (withDescription: boolean) => ({ - description: withDescription ? 'Description' : undefined, - }), - labels: (withDescription: boolean) => - withDescription ? 'With description' : 'Without description', - }, { name: 'states', values: ['default', 'hover'],