diff --git a/src/ui/component/channelLink/view.jsx b/src/ui/component/channelLink/view.jsx index abef07ab3..553e92855 100644 --- a/src/ui/component/channelLink/view.jsx +++ b/src/ui/component/channelLink/view.jsx @@ -120,8 +120,7 @@ class ChannelLink extends React.Component { const { channelName, claimName, claimId } = parseURI(uri); const blackListed = this.isClaimBlackListed(); const isReady = !blackListed && !isResolvingUri && claim !== null; - const tooltipReady = isReady && this.buttonRef.current !== null; - + const tooltipReady = this.buttonRef.current !== null; const bgColor = '#32373b'; const tooltipStyle = { @@ -129,10 +128,10 @@ class ChannelLink extends React.Component { arrowStyle: { color: bgColor }, }; - return isReady ? ( + return (