From a61f73c6aba68f6db805f34b6ef3395e65d2a2bf Mon Sep 17 00:00:00 2001 From: johnwils Date: Mon, 12 Jun 2017 14:25:52 -0700 Subject: [PATCH] fix react proptypes warning --- lib/components/Modal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/Modal.js b/lib/components/Modal.js index 34d23b1b..8e5f14c4 100644 --- a/lib/components/Modal.js +++ b/lib/components/Modal.js @@ -38,7 +38,7 @@ var Modal = createReactClass({ overlay: PropTypes.object }), portalClassName: PropTypes.string, - bodyOpenClassName: React.PropTypes.string, + bodyOpenClassName: PropTypes.string, appElement: PropTypes.instanceOf(SafeHTMLElement), onAfterOpen: PropTypes.func, onRequestClose: PropTypes.func,