Removed unused prop-types dependency

no refs
This commit is contained in:
Rishabh 2021-06-16 20:33:29 +05:30 committed by Rishabh Garg
parent 90c076fc39
commit 596cef4df7
2 changed files with 0 additions and 6 deletions

View File

@ -21,7 +21,6 @@
"@testing-library/jest-dom": "5.13.0",
"@testing-library/react": "11.2.7",
"@testing-library/user-event": "12.8.3",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-scripts": "4.0.3"

View File

@ -1,4 +1,3 @@
import PropTypes from 'prop-types';
import Frame from './Frame';
import MemberGravatar from './common/MemberGravatar';
import AppContext from '../AppContext';
@ -258,7 +257,3 @@ export default class TriggerButton extends React.Component {
);
}
}
TriggerButton.propTypes = {
isPopupOpen: PropTypes.bool
};