Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
krzotki committed Jul 30, 2024
1 parent 7b685fa commit 443bc62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/select-menu/SelectMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ const SelectMenu = React.forwardRef<HTMLDivElement, SelectMenuPropsType>(
});

const {isExpanded, onOpenChange, handleOptionSelect} = useSelectMenu({
id,
id: selectId,
valid,
invalid,
expanded,
Expand Down Expand Up @@ -476,7 +476,7 @@ const SelectMenu = React.forwardRef<HTMLDivElement, SelectMenuPropsType>(
pointerEvents: 'auto',
}}
{...interactionsFloatingProps}
aria-labelledby={id}
aria-labelledby={selectId}
tabIndex={-1}
data-placement={floatingProps.placement}
aria-multiselectable={multiSelect}
Expand Down

0 comments on commit 443bc62

Please sign in to comment.