Skip to content
This repository has been archived by the owner on Oct 6, 2020. It is now read-only.

Commit

Permalink
fix(Dropdown): Fix SSR by removing direct reference to Element in pro…
Browse files Browse the repository at this point in the history
…p types (#43)
  • Loading branch information
kylealwyn authored Jun 21, 2019
1 parent 48b3c0b commit ce080cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Dropdown/Dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ Dropdown.propTypes = {
zIndex: PropTypes.number,
transitionDuration: PropTypes.number,
transitionTimingFunction: PropTypes.string,
portalNode: PropTypes.instanceOf(Element),
portalNode: PropTypes.element,
};

Dropdown.defaultProps = {
Expand Down

0 comments on commit ce080cf

Please sign in to comment.