about summary refs log tree commit diff
path: root/src/view/com/post-thread
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/com/post-thread')
-rw-r--r--src/view/com/post-thread/PostRepostedBy.tsx1
-rw-r--r--src/view/com/post-thread/PostThreadItem.tsx4
-rw-r--r--src/view/com/post-thread/PostVotedBy.tsx1
3 files changed, 6 insertions, 0 deletions
diff --git a/src/view/com/post-thread/PostRepostedBy.tsx b/src/view/com/post-thread/PostRepostedBy.tsx
index ca5cc476a..1f238f5b3 100644
--- a/src/view/com/post-thread/PostRepostedBy.tsx
+++ b/src/view/com/post-thread/PostRepostedBy.tsx
@@ -93,6 +93,7 @@ const RepostedByItem = ({item}: {item: RepostedByViewItemModel}) => {
             size={40}
             displayName={item.displayName}
             handle={item.handle}
+            avatar={item.avatar}
           />
         </View>
         <View style={styles.layoutContent}>
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx
index a90990b5a..8408eb6c0 100644
--- a/src/view/com/post-thread/PostThreadItem.tsx
+++ b/src/view/com/post-thread/PostThreadItem.tsx
@@ -61,6 +61,7 @@ export const PostThreadItem = observer(function PostThreadItem({
         author: {
           handle: item.author.handle,
           displayName: item.author.displayName,
+          avatar: item.author.avatar,
         },
       },
       onPost: onPostReply,
@@ -113,6 +114,7 @@ export const PostThreadItem = observer(function PostThreadItem({
                   size={50}
                   displayName={item.author.displayName}
                   handle={item.author.handle}
+                  avatar={item.author.avatar}
                 />
               </Link>
             </View>
@@ -236,6 +238,7 @@ export const PostThreadItem = observer(function PostThreadItem({
               <UserAvatar
                 handle={item.replyingTo.author.handle}
                 displayName={item.replyingTo.author.displayName}
+                avatar={item.replyingTo.author.avatar}
                 size={30}
               />
             </View>
@@ -251,6 +254,7 @@ export const PostThreadItem = observer(function PostThreadItem({
                 size={50}
                 displayName={item.author.displayName}
                 handle={item.author.handle}
+                avatar={item.author.avatar}
               />
             </Link>
           </View>
diff --git a/src/view/com/post-thread/PostVotedBy.tsx b/src/view/com/post-thread/PostVotedBy.tsx
index ad85d077f..7b798482a 100644
--- a/src/view/com/post-thread/PostVotedBy.tsx
+++ b/src/view/com/post-thread/PostVotedBy.tsx
@@ -93,6 +93,7 @@ const LikedByItem = ({item}: {item: VotesViewItemModel}) => {
             size={40}
             displayName={item.actor.displayName}
             handle={item.actor.handle}
+            avatar={item.actor.avatar}
           />
         </View>
         <View style={styles.layoutContent}>