diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-12-08 13:45:23 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-12-08 13:45:23 -0600 |
commit | 539bf5d35069a654fb31b1ff636358fe28793c06 (patch) | |
tree | 89672e39e506ff3898aa1e4b9a306b6b31d89b47 /src/view/com/post/Post.tsx | |
parent | 273e6d29734153e86a4b42b7e81d05fe5627f649 (diff) | |
download | voidsky-539bf5d35069a654fb31b1ff636358fe28793c06.tar.zst |
Add avatar images and fix some type signatures
Diffstat (limited to 'src/view/com/post/Post.tsx')
-rw-r--r-- | src/view/com/post/Post.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx index 23ec44c6b..97bec92ea 100644 --- a/src/view/com/post/Post.tsx +++ b/src/view/com/post/Post.tsx @@ -97,6 +97,7 @@ export const Post = observer(function Post({ author: { handle: item.author.handle, displayName: item.author.displayName, + avatar: item.author.avatar, }, }, }) @@ -137,6 +138,7 @@ export const Post = observer(function Post({ size={50} displayName={item.author.displayName} handle={item.author.handle} + avatar={item.author.avatar} /> </Link> </View> |