Fix rendering bug

This commit is contained in:
Paul Frazee
2023-04-12 12:51:53 -07:00
parent 0ac67c4d55
commit 8a7091e5e7
+1 -2
View File
@@ -282,7 +282,7 @@ export const PostThreadItem = observer(function PostThreadItem({
<PostHider <PostHider
testID={`postThreadItem-by-${item.post.author.handle}`} testID={`postThreadItem-by-${item.post.author.handle}`}
href={itemHref} href={itemHref}
style={[styles.outer, {borderTopColor: pal.colors.border}, pal.view]} style={[styles.outer, {borderColor: pal.colors.border}, pal.view]}
isMuted={item.post.author.viewer?.muted === true} isMuted={item.post.author.viewer?.muted === true}
labels={item.post.labels}> labels={item.post.labels}>
{item._showParentReplyLine && ( {item._showParentReplyLine && (
@@ -316,7 +316,6 @@ export const PostThreadItem = observer(function PostThreadItem({
did={item.post.author.did} did={item.post.author.did}
/> />
<ContentHider <ContentHider
isMuted={item.post.author.viewer?.muted === true}
labels={item.post.labels} labels={item.post.labels}
containerStyle={styles.contentHider}> containerStyle={styles.contentHider}>
{item.richText?.text ? ( {item.richText?.text ? (