aboutsummaryrefslogtreecommitdiff
path: root/src/components/comments/CommentTile.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/comments/CommentTile.tsx')
-rw-r--r--src/components/comments/CommentTile.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/comments/CommentTile.tsx b/src/components/comments/CommentTile.tsx
index da78a4dc..f286ba52 100644
--- a/src/components/comments/CommentTile.tsx
+++ b/src/components/comments/CommentTile.tsx
@@ -24,10 +24,10 @@ const CommentTile: React.FC<CommentTileProps> = ({
<View style={styles.container}>
<ProfilePreview
profilePreview={{
- id: comment_object.commenter__id,
- username: comment_object.commenter__username,
- first_name: '',
- last_name: '',
+ id: comment_object.commenter.id,
+ username: comment_object.commenter.username,
+ first_name: comment_object.commenter.first_name,
+ last_name: comment_object.commenter.last_name,
}}
previewType={'Comment'}
screenType={screenType}