diff --git a/src/view/com/notifications/NotificationFeedItem.tsx b/src/view/com/notifications/NotificationFeedItem.tsx index 2ac86f55fb..7b5d4e022b 100644 --- a/src/view/com/notifications/NotificationFeedItem.tsx +++ b/src/view/com/notifications/NotificationFeedItem.tsx @@ -1067,23 +1067,24 @@ function ExpandedAuthorsList({ } return ( - {profileCardEnabled ? ( - - {authors.map((author, i) => ( - - ))} - - ) : ( - visible && - authors.map(author => ( - - )) - )} + {visible ? ( + profileCardEnabled ? ( + + {authors.map((author, i) => ( + + ))} + + ) : ( + authors.map(author => ( + + )) + ) + ) : null} ) }