diff --git a/src/components/organisms/ServiceSelector/ServiceSelector.stories.tsx b/src/components/organisms/ServiceSelector/ServiceSelector.stories.tsx index 3cbfdad..7559c0d 100644 --- a/src/components/organisms/ServiceSelector/ServiceSelector.stories.tsx +++ b/src/components/organisms/ServiceSelector/ServiceSelector.stories.tsx @@ -132,22 +132,23 @@ export const CoffinSelection: Story = { }, }; -// --- With Truncated Descriptions --------------------------------------------- +// --- With Line Limit --------------------------------------------------------- -/** Long descriptions with "View more" toggle */ -export const WithTruncatedDescriptions: Story = { +/** Descriptions clamped to 1 line with "View more" toggle */ +export const WithLineLimit: Story = { render: () => { const [selected, setSelected] = useState(); return ( alert(`Selected: ${selected}`)} - maxDescriptionLines={2} + maxDescriptionLines={1} /> ); },