diff --git a/src/components/VideoPostCard.tsx b/src/components/VideoPostCard.tsx index c28adad8b3..191c7b82a2 100644 --- a/src/components/VideoPostCard.tsx +++ b/src/components/VideoPostCard.tsx @@ -390,6 +390,7 @@ export function CompactVideoPostCard({ if (!AppBskyEmbedVideo.isView(embed)) return null const likeCount = post?.likeCount ?? 0 + const showLikeCount = false const {thumbnail} = embed const black = getBlackColor(t) @@ -475,47 +476,51 @@ export function CompactVideoPostCard({ /> - + + style={[a.relative, a.rounded_full, {width: 24, height: 24}]}> - - + {showLikeCount && ( - {likeCount > 0 && ( - - - - {formatCount(i18n, likeCount)} - - - )} + style={[ + a.absolute, + a.inset_0, + a.pt_2xl, + { + top: 'auto', + }, + ]}> + + + + {likeCount > 0 && ( + + + + {formatCount(i18n, likeCount)} + + + )} + - + )}