diff --git a/js/page/discover.js b/js/page/discover.js index 59bf7d032..a35515ff7 100644 --- a/js/page/discover.js +++ b/js/page/discover.js @@ -43,11 +43,11 @@ var SearchResults = React.createClass({ render: function() { var rows = [], seenNames = {}; //fix this when the search API returns claim IDs - this.props.results.forEach(function({name}) { + this.props.results.forEach(function({name, value}) { if (!seenNames[name]) { seenNames[name] = name; rows.push( - + ); } });