diff --git a/src/components/Hashtag.tsx b/src/components/Hashtag.tsx index 90ab7ef7..07b3c029 100644 --- a/src/components/Hashtag.tsx +++ b/src/components/Hashtag.tsx @@ -52,22 +52,24 @@ const ComponentHashtag: React.FC = ({ > #{hashtag.name} - setHeight(height)} - > - parseInt(h.uses)).reverse()} - width={width} - height={height} - margin={children ? StyleConstants.Spacing.S : undefined} - /> - {children} - + {hashtag.history?.length ? ( + setHeight(height)} + > + parseInt(h.uses)).reverse()} + width={width} + height={height} + margin={children ? StyleConstants.Spacing.S : undefined} + /> + {children} + + ) : null} ) }