diff --git a/src/view/com/notifications/NotificationFeedItem.tsx b/src/view/com/notifications/NotificationFeedItem.tsx index 7b5d4e022b..7fc2dc2889 100644 --- a/src/view/com/notifications/NotificationFeedItem.tsx +++ b/src/view/com/notifications/NotificationFeedItem.tsx @@ -1064,27 +1064,26 @@ function ExpandedAuthorsList({ : authors.length * (EXPANDED_AUTHOR_EL_HEIGHT + 10) /*10=margin*/ const heightStyle = { height: Animated.multiply(heightInterp, targetHeight), + opacity: Animated.divide(heightInterp, 1), } return ( - {visible ? ( - profileCardEnabled ? ( - - {authors.map((author, i) => ( - - ))} - - ) : ( - authors.map(author => ( - - )) - ) - ) : null} + {profileCardEnabled ? ( + + {authors.map((author, i) => ( + + ))} + + ) : ( + authors.map(author => ( + + )) + )} ) }