From 34f7902beaad98818f346ac3d2afe2bbcc61198a Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 10 Jun 2026 12:04:19 -0500 Subject: [PATCH] Keep visible around --- .../notifications/NotificationFeedItem.tsx | 35 ++++++++++--------- 1 file changed, 18 insertions(+), 17 deletions(-) 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} ) }