Skip to content

Commit

Permalink
Fix wrong PropType for homepage
Browse files Browse the repository at this point in the history
Homepage is always returned as a single string from the API.
  • Loading branch information
KKoukiou authored and martinpitt committed Aug 6, 2019
1 parent a3a5fa1 commit 5aa61c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/ListView/ListItemComponents.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 5aa61c4

Please sign in to comment.