From 67192ea23f7ae4cad04be1d27e185fcac372bc41 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Thu, 18 Feb 2021 22:29:11 -0500 Subject: [PATCH] hide staked indicator on creator likes in comments --- ui/component/commentReactions/view.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/component/commentReactions/view.jsx b/ui/component/commentReactions/view.jsx index 410e1e36f..4dc2c50d9 100644 --- a/ui/component/commentReactions/view.jsx +++ b/ui/component/commentReactions/view.jsx @@ -38,7 +38,7 @@ export default function CommentReactions(props: Props) { ? claim.canonical_url : claim && claim.signing_channel && claim.signing_channel.canonical_url; - const getCountForReact = type => { + const getCountForReact = (type) => { let count = 0; if (othersReacts && othersReacts[type]) { count += othersReacts[type]; @@ -105,7 +105,7 @@ export default function CommentReactions(props: Props) { className={classnames('comment__action comment__action--creator-like')} onClick={() => react(commentId, REACTION_TYPES.CREATOR_LIKE)} > - {creatorLiked && } + {creatorLiked && } )}