From b6f7321c235bbf08ddf98e44a34624709c14f5ef Mon Sep 17 00:00:00 2001 From: mgabdev <> Date: Wed, 4 Nov 2020 21:02:59 -0600 Subject: [PATCH] Fixed issue with proptype in PlaceholderLayout MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • Fixed: - issue with proptype in PlaceholderLayout --- .../gabsocial/components/placeholder/placeholder_layout.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/gabsocial/components/placeholder/placeholder_layout.js b/app/javascript/gabsocial/components/placeholder/placeholder_layout.js index ddabc096..18554c59 100644 --- a/app/javascript/gabsocial/components/placeholder/placeholder_layout.js +++ b/app/javascript/gabsocial/components/placeholder/placeholder_layout.js @@ -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))