diff --git a/src/ui/component/claimLink/view.jsx b/src/ui/component/claimLink/view.jsx index 9ff320283..4eb21ab98 100644 --- a/src/ui/component/claimLink/view.jsx +++ b/src/ui/component/claimLink/view.jsx @@ -2,6 +2,7 @@ import * as React from 'react'; import Button from 'component/button'; import PreviewLink from 'component/previewLink'; +import UriIndicator from 'component/uriIndicator'; type Props = { uri: string, @@ -70,9 +71,14 @@ class ClaimLink extends React.Component { return {children}; } - const { name: claimName } = claim; + const { name: claimName, value_type: valueType } = claim; + const isChannel = valueType === 'channel'; const showPreview = autoEmbed === true && !isUnresolved; + if(isChannel){ + return + } + return (