fix: show price on channel page

This commit is contained in:
Sean Yesmunt 2018-04-03 20:09:01 -04:00
parent 0445737306
commit acef054613
2 changed files with 2 additions and 3 deletions

View file

@ -234,8 +234,7 @@ class CategoryList extends React.PureComponent<Props, State> {
}} }}
className="card-row__scrollhouse" className="card-row__scrollhouse"
> >
{names && {names && names.map(name => <FileCard key={name} uri={normalizeURI(name)} />)}
names.map(name => <FileCard key={name} displayStyle="card" uri={normalizeURI(name)} />)}
</div> </div>
</div> </div>
); );

View file

@ -166,7 +166,7 @@ class FileList extends React.PureComponent<Props, State> {
const uri = buildURI(uriParams); const uri = buildURI(uriParams);
content.push(<FileCard key={uri} uri={uri} showPrice={false} />); content.push(<FileCard key={uri} uri={uri} />);
}); });
return ( return (