diff --git a/app/components/post_list/post/post.tsx b/app/components/post_list/post/post.tsx index 0035bee1cb..c2938cf943 100644 --- a/app/components/post_list/post/post.tsx +++ b/app/components/post_list/post/post.tsx @@ -222,7 +222,7 @@ const Post = ({ let header: ReactNode; let postAvatar: ReactNode; let consecutiveStyle: StyleProp; - const isProrityPost = isPostPriorityEnabled && post.props.priority; + const isProrityPost = Boolean(isPostPriorityEnabled && post.props?.priority); const sameSequence = hasReplies ? (hasReplies && post.rootId) : !post.rootId; if (!isProrityPost && hasSameRoot && isConsecutivePost && sameSequence) { consecutiveStyle = styles.consective;