diff --git a/app/components/post_list/post/header/header.tsx b/app/components/post_list/post/header/header.tsx index 1f3ea8cb4..9004a39ae 100644 --- a/app/components/post_list/post/header/header.tsx +++ b/app/components/post_list/post/header/header.tsx @@ -95,7 +95,7 @@ const Header = ({ testID='post_header' /> )} - {!isSystemPost && + {(!isSystemPost || isAutoResponse) && | undefined = isPostPendingOrFailed(post) ? style.pendingPost : undefined; + const isAutoResponder = fromAutoResponder(post); let highlightedStyle: StyleProp; if (highlight) { @@ -175,7 +177,9 @@ const Post = ({ consecutiveStyle = style.consective; postAvatar = ; } else { - postAvatar = ( + postAvatar = isAutoResponder ? ( + + ) : ( ); - if (isSystemMessage(post)) { + if (isSystemMessage(post) && !isAutoResponder) { header = (