diff --git a/packages/pl-fe/src/components/preview-card.tsx b/packages/pl-fe/src/components/preview-card.tsx index 67606c6df..df8fc9282 100644 --- a/packages/pl-fe/src/components/preview-card.tsx +++ b/packages/pl-fe/src/components/preview-card.tsx @@ -328,33 +328,44 @@ const PreviewCard: React.FC = ({ ( - - - - {author.account && ( - - )} - - - - - - - )), + name: card.authors.map((author) => { + const linkBody = ( + + {author.account && ( + + )} + + + + + ); + return ( + + {author.account ? ( + + {linkBody} + + ) : ( + + {linkBody} + + )} + + ); + }), }} />