diff --git a/src/components/structure/RightColumn.jsx b/src/components/structure/RightColumn.jsx index cd94bc8..0320e73 100644 --- a/src/components/structure/RightColumn.jsx +++ b/src/components/structure/RightColumn.jsx @@ -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;