Skip to content

Commit 94b3d31

Browse files
committed
Fix ESLint
1 parent fcf5c26 commit 94b3d31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FilterMonitor.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default class FilterMonitor extends Component {
1111
};
1212

1313
isFiltered(actionType) {
14-
var type = actionType || '';
14+
const type = actionType || '';
1515
return (
1616
this.props.whitelist && type.match(this.props.whitelist.join('|')) ||
1717
this.props.blacklist && !type.match(this.props.blacklist.join('|'))

0 commit comments

Comments
 (0)