From 5aa61c4a0f623068a89ba6fff0d82a1a266aa4fb Mon Sep 17 00:00:00 2001 From: Katerina Koukiou Date: Fri, 2 Aug 2019 15:23:24 +0200 Subject: [PATCH] Fix wrong PropType for homepage Homepage is always returned as a single string from the API. --- components/ListView/ListItemComponents.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ListView/ListItemComponents.js b/components/ListView/ListItemComponents.js index f871934fd..1d105f886 100644 --- a/components/ListView/ListItemComponents.js +++ b/components/ListView/ListItemComponents.js @@ -169,7 +169,7 @@ ListItemComponents.propTypes = { ui_type: PropTypes.string, userSelected: PropTypes.bool, version: PropTypes.string, - homepage: PropTypes.arrayOf(PropTypes.string), + homepage: PropTypes.string, dependencies: PropTypes.arrayOf(PropTypes.object) }), listItemParent: PropTypes.string,