From 41faafffe74fe06efcf6ac12bcd65ce33f8067c9 Mon Sep 17 00:00:00 2001 From: Jason Axelson Date: Thu, 4 Aug 2016 12:22:57 -1000 Subject: [PATCH] Filter transitionSpeed as well This fixes the following error: Warning: Unknown prop `transitionSpeed` on
tag. Remove this prop from the element --- src/simple-modal.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/simple-modal.js b/src/simple-modal.js index 492256c..be78615 100755 --- a/src/simple-modal.js +++ b/src/simple-modal.js @@ -94,7 +94,8 @@ function _filteredProps(props) { 'containerClassName', 'closeOnOuterClick', 'show', - 'onClose' + 'onClose', + 'transitionSpeed' ].map( p => { delete filtered[p] })