Fixed issue with proptype in PlaceholderLayout

• Fixed:
- issue with proptype in PlaceholderLayout
This commit is contained in:
mgabdev 2020-11-04 21:02:59 -06:00
parent 47415f4602
commit b6f7321c23

@ -46,7 +46,7 @@ PlaceholderLayout.propTypes = {
children: PropTypes.node,
intl: PropTypes.object.isRequired,
theme: PropTypes.string.isRequired,
viewBox: PropTypes.object.isRequired,
viewBox: PropTypes.string.isRequired,
}
export default injectIntl(connect(mapStateToProps)(PlaceholderLayout))