diff options
Diffstat (limited to 'src/view/com/post-thread')
-rw-r--r-- | src/view/com/post-thread/PostThreadLoadMore.tsx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/view/com/post-thread/PostThreadLoadMore.tsx b/src/view/com/post-thread/PostThreadLoadMore.tsx index 780ea7728..27e2ea724 100644 --- a/src/view/com/post-thread/PostThreadLoadMore.tsx +++ b/src/view/com/post-thread/PostThreadLoadMore.tsx @@ -33,7 +33,11 @@ export function PostThreadLoadMore({post}: {post: AppBskyFeedDefs.PostView}) { backgroundColor: t.atoms.bg.backgroundColor, marginRight: -20, }}> - <UserAvatar avatar={post.author.avatar} size={30} /> + <UserAvatar + avatar={post.author.avatar} + size={30} + type={post.author.associated?.labeler ? 'labeler' : 'user'} + /> </View> <View style={{ @@ -44,7 +48,11 @@ export function PostThreadLoadMore({post}: {post: AppBskyFeedDefs.PostView}) { borderRadius: 18, backgroundColor: t.atoms.bg.backgroundColor, }}> - <UserAvatar avatar={post.author.avatar} size={30} /> + <UserAvatar + avatar={post.author.avatar} + size={30} + type={post.author.associated?.labeler ? 'labeler' : 'user'} + /> </View> </View> <View style={[a.px_sm]}> |