diff options
author | Husam Salhab <47015061+hsalhab@users.noreply.github.com> | 2021-01-07 15:05:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-07 15:05:50 -0500 |
commit | d955c6bc31be3b2e3e289a8dec8b5970251d4090 (patch) | |
tree | 29115267cb465067125518ebe7246df041083586 /src/components/comments/CommentTile.tsx | |
parent | 0fe59c08cca546bdb5b4ec178ea0c7a250380de6 (diff) |
changes here and there (#171)
Diffstat (limited to 'src/components/comments/CommentTile.tsx')
-rw-r--r-- | src/components/comments/CommentTile.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/comments/CommentTile.tsx b/src/components/comments/CommentTile.tsx index f286ba52..47f25a53 100644 --- a/src/components/comments/CommentTile.tsx +++ b/src/components/comments/CommentTile.tsx @@ -19,7 +19,7 @@ const CommentTile: React.FC<CommentTileProps> = ({ comment_object, screenType, }) => { - const timePosted = getTimePosted(comment_object.date_time); + const timePosted = getTimePosted(comment_object.date_created); return ( <View style={styles.container}> <ProfilePreview |