Fix PropType warnings in ColumnHeader and SubNavigation

This commit is contained in:
Alex Gleason
2021-10-04 13:39:07 -05:00
parent c789fba629
commit 63a001ae7d
2 changed files with 1 additions and 2 deletions

View File

@ -19,7 +19,7 @@ export default class ColumnHeader extends React.PureComponent {
};
static propTypes = {
intl: PropTypes.object.isRequired,
// intl: PropTypes.object.isRequired,
title: PropTypes.node,
icon: PropTypes.string,
active: PropTypes.bool,

View File

@ -6,7 +6,6 @@ import Icon from 'soapbox/components/icon';
export default class SubNavigation extends React.PureComponent {
static propTypes = {
intl: PropTypes.object.isRequired,
message: PropTypes.string,
}