diff --git a/src/components/VideoPopoverMenu/index.tsx b/src/components/VideoPopoverMenu/index.tsx index 2a692779c5a4..aad6364f91df 100644 --- a/src/components/VideoPopoverMenu/index.tsx +++ b/src/components/VideoPopoverMenu/index.tsx @@ -7,13 +7,13 @@ import type {AnchorPosition} from '@styles/index'; type VideoPopoverMenuProps = { /** Whether popover menu is visible. */ - isPopoverVisible: boolean; + isPopoverVisible?: boolean; /** Callback executed to hide popover when an item is selected. */ - hidePopover: (selectedItem?: PopoverMenuItem, index?: number) => void; + hidePopover?: (selectedItem?: PopoverMenuItem, index?: number) => void; /** The horizontal and vertical anchors points for the popover. */ - anchorPosition: AnchorPosition; + anchorPosition?: AnchorPosition; }; function VideoPopoverMenu({