Skip to content

Commit

Permalink
fix(Dropdown): make titleText required (#17886)
Browse files Browse the repository at this point in the history
  • Loading branch information
emyarod authored Oct 25, 2024
1 parent cf14ad7 commit 5e87fc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react/src/components/Dropdown/Dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ export interface DropdownProps<ItemType>
* Provide the title text that will be read by a screen reader when
* visiting this control
*/
titleText?: ReactNode;
titleText: ReactNode;

/**
* The dropdown type, `default` or `inline`
Expand Down

0 comments on commit 5e87fc9

Please sign in to comment.