don't use href for lbry link

This commit is contained in:
Sean Yesmunt 2017-12-09 14:07:17 -05:00
parent 9ca138e0f5
commit 2dcabc0e7d
2 changed files with 3 additions and 2 deletions

View file

@ -184,7 +184,8 @@ export class FeaturedCategory extends React.PureComponent {
<Link
className="no-underline"
label={category}
href={categoryLink}
navigate="/show"
navigateParams={{ uri: categoryLink }}
/>
) : (
category

View file

@ -88,7 +88,7 @@ export default class extends React.PureComponent<Props> {
return (
<FeaturedCategory
key={subscription.channelName}
categoryLink={`lbry://${subscription.uri}`}
categoryLink={subscription.uri}
category={subscription.channelName}
names={subscription.claims}
/>