diff options
Diffstat (limited to 'src/components/comments')
-rw-r--r-- | src/components/comments/CommentTile.tsx | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/components/comments/CommentTile.tsx b/src/components/comments/CommentTile.tsx index c6dd9fc1..b631a985 100644 --- a/src/components/comments/CommentTile.tsx +++ b/src/components/comments/CommentTile.tsx @@ -123,12 +123,7 @@ const CommentTile: React.FC<CommentTileProps> = ({ <View style={[styles.container, isThread ? styles.moreMarginWithThread : {}]}> <ProfilePreview - profilePreview={{ - id: comment_object.commenter.id, - username: comment_object.commenter.username, - first_name: comment_object.commenter.first_name, - last_name: comment_object.commenter.last_name, - }} + profilePreview={comment_object.commenter} previewType={'Comment'} screenType={screenType} /> |