diff --git a/src/components/catalog-row/catalog-row.tsx b/src/components/catalog-row/catalog-row.tsx index 4f2d2544..fcab8398 100644 --- a/src/components/catalog-row/catalog-row.tsx +++ b/src/components/catalog-row/catalog-row.tsx @@ -155,6 +155,13 @@ const CatalogPost = ({ post }: { post: Comment }) => { subplebbitAddress, }); + const postContent = ( +
+ {title && `${title}${content ? ': ' : ''}`} + {content} +
+ ); + return ( <>
@@ -192,12 +199,7 @@ const CatalogPost = ({ post }: { post: Comment }) => {
- -
- {title && `${title}${content ? ': ' : ''}`} - {content} -
- + {hasThumbnail ? postContent : {postContent}} {hoveredCid === cid &&