Skip to content

Commit

Permalink
fix(menu): override popover html attribute (#1351)
Browse files Browse the repository at this point in the history
* fix(menu): override popover html attribute

* fix(menu): omit popover property
  • Loading branch information
rdunk authored Jul 2, 2024
1 parent a44e63e commit dc30bc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/components/menu/menuGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ export interface MenuGroupProps {
* @public
*/
export function MenuGroup(
props: MenuGroupProps &
Omit<React.HTMLProps<HTMLDivElement>, 'as' | 'height' | 'ref' | 'tabIndex'>,
props: Omit<React.HTMLProps<HTMLDivElement>, 'as' | 'height' | 'popover' | 'ref' | 'tabIndex'> &
MenuGroupProps,
): React.ReactElement {
const {
as = 'button',
Expand Down

0 comments on commit dc30bc4

Please sign in to comment.