Skip to content

Commit

Permalink
fix(react): temporary prop types fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dackmin committed Jun 6, 2024
1 parent 573e35a commit fdf58b3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/react/lib/Dropdown/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ Dropdown.propTypes = {
PropTypes.string,
PropTypes.element,
PropTypes.instanceOf(DocumentFragment),
PropTypes.any, // TODO: fix this
]),
disabled: PropTypes.bool,
dismissOptions: PropTypes.object,
Expand Down
1 change: 1 addition & 0 deletions packages/react/lib/Modal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ Modal.propTypes = {
PropTypes.string,
PropTypes.element,
PropTypes.instanceOf(DocumentFragment),
PropTypes.any, // TODO: fix this
]),
closable: PropTypes.bool,
disabled: PropTypes.bool,
Expand Down
1 change: 1 addition & 0 deletions packages/react/lib/Tooltip/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,7 @@ Tooltip.propTypes = {
PropTypes.string,
PropTypes.element,
PropTypes.instanceOf(DocumentFragment),
PropTypes.any, // TODO: fix this
]),
disabled: PropTypes.bool,
onToggle: PropTypes.func,
Expand Down

0 comments on commit fdf58b3

Please sign in to comment.