Fix PropTypes.oneOfType() warning (#5041)

th-downstream
Nolan Lawson 7 years ago committed by Eugen Rochko
parent f79569ba99
commit 60c22ed3ac

@ -8,7 +8,7 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
export default class ColumnLoading extends ImmutablePureComponent {
static propTypes = {
title: PropTypes.oneOfType(PropTypes.node, PropTypes.string),
title: PropTypes.oneOfType([PropTypes.node, PropTypes.string]),
icon: PropTypes.string,
};

Loading…
Cancel
Save