Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
smelaa committed Mar 20, 2024
1 parent 83a7bfd commit b0a2e69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/VideoPopoverMenu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down

0 comments on commit b0a2e69

Please sign in to comment.