Fixes propTypes warning introduced by #2774 (#2824)

이 커밋은 다음에 포함됨:
alpaca-tc
2017-05-05 21:31:20 +02:00
커밋한 사람 Eugen Rochko
부모 484c9709b6
커밋 d1290fbd8f
+2 -1
파일 보기
@@ -1,4 +1,5 @@
import React from 'react';
import ImmutablePropTypes from 'react-immutable-proptypes';
import { connect } from 'react-redux';
import Warning from '../components/warning';
import { createSelector } from 'reselect';
@@ -44,7 +45,7 @@ const WarningWrapper = ({ needsLeakWarning, needsLockWarning, mentionedDomains }
WarningWrapper.propTypes = {
needsLeakWarning: PropTypes.bool,
needsLockWarning: PropTypes.bool,
mentionedDomains: PropTypes.array.isRequired,
mentionedDomains: ImmutablePropTypes.orderedSet.isRequired,
};
export default connect(mapStateToProps)(WarningWrapper);