Browse Source

Fixes propTypes warning introduced by #2774 (#2824)

closed-social-glitch-2
alpaca-tc 7 years ago
committed by Eugen Rochko
parent
commit
d1290fbd8f
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      app/javascript/mastodon/features/compose/containers/warning_container.js

+ 2
- 1
app/javascript/mastodon/features/compose/containers/warning_container.js View File

@ -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);

Loading…
Cancel
Save