Allow PropType of array for RightColumn children

This commit is contained in:
Robbie Antenesse 2017-12-11 18:53:22 -07:00
parent 647ba8d114
commit b6789b5826
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import PropTypes from 'prop-types';
export const RightColumn = (props) => {
PropTypes.checkPropTypes({
formIsDisplayed: PropTypes.bool.isRequired,
children: PropTypes.object,
children: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
}, props, 'prop', 'RightColumn');
const { formIsDisplayed } = props;