diff --git a/packages/vibrant-components/src/lib/Popover/Popover.stories.tsx b/packages/vibrant-components/src/lib/Popover/Popover.stories.tsx index d72403465..86813fec6 100644 --- a/packages/vibrant-components/src/lib/Popover/Popover.stories.tsx +++ b/packages/vibrant-components/src/lib/Popover/Popover.stories.tsx @@ -24,6 +24,16 @@ export const Basic: ComponentStory = props => ( ); +export const WithDefaultOpen: ComponentStory = props => ( + + + + + + + +); + export const WithExternalState: ComponentStory = props => { const [isOpen, setIsOpen] = useState(false); diff --git a/packages/vibrant-components/src/lib/Popover/Popover.tsx b/packages/vibrant-components/src/lib/Popover/Popover.tsx index 0fdfaa195..6202f78a4 100644 --- a/packages/vibrant-components/src/lib/Popover/Popover.tsx +++ b/packages/vibrant-components/src/lib/Popover/Popover.tsx @@ -244,8 +244,8 @@ export const Popover = ({