diff options
author | Ivan Chen <ivan@thetaggid.com> | 2021-01-14 14:06:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-14 14:06:07 -0500 |
commit | 007dcc5c836f1b368042c530d22f5421610efb7c (patch) | |
tree | 9ea1254dcaa1c5b0ff1753a9da2c80b93be84860 /src/components/comments | |
parent | 82476e27fe6f5dc699370659d223dcd86fd5c76b (diff) |
created navigation to comment from notification (#184)
Diffstat (limited to 'src/components/comments')
-rw-r--r-- | src/components/comments/CommentsCount.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/comments/CommentsCount.tsx b/src/components/comments/CommentsCount.tsx index 325e2788..f4f8197d 100644 --- a/src/components/comments/CommentsCount.tsx +++ b/src/components/comments/CommentsCount.tsx @@ -30,7 +30,7 @@ const CommentsCount: React.FC<CommentsCountProps> = ({ }; return ( <> - <TouchableOpacity onPress={() => navigateToCommentsScreen()}> + <TouchableOpacity onPress={navigateToCommentsScreen}> <CommentIcon style={styles.image} /> <Text style={styles.count}> {commentsCount !== '0' ? commentsCount : ''} |