Fix PropTypes.oneOfType() warning (#5041)

This commit is contained in:
Nolan Lawson 2017-09-22 08:50:29 -07:00 committed by Eugen Rochko
parent dd4ef69839
commit b01ab55ed8

View file

@ -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,
};