We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3dca28f commit e81b8b0Copy full SHA for e81b8b0
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "redux-devtools-filter-actions",
3
- "version": "1.2.0",
+ "version": "1.2.1",
4
"description": "A composable monitor for Redux DevTools with the ability to filter actions.",
5
"main": "lib/index.js",
6
"files": [
@@ -47,6 +47,7 @@
47
"expect": "^1.6.0",
48
"mocha": "^2.2.5",
49
"mocha-jsdom": "^1.0.0",
50
+ "prop-types": "^15.5.8",
51
"rimraf": "^2.3.4",
52
"webpack": "^1.11.0"
53
},
src/FilterMonitor.js
@@ -1,4 +1,5 @@
-import { cloneElement, Component, PropTypes } from 'react';
+import { cloneElement, Component } from 'react';
+import PropTypes from 'prop-types';
import mapValues from 'lodash/mapValues';
import reducer from './reducers';
0 commit comments