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.tsx9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/components/comments/CommentTile.tsx b/src/components/comments/CommentTile.tsx
index 8074a015..688a16e6 100644
--- a/src/components/comments/CommentTile.tsx
+++ b/src/components/comments/CommentTile.tsx
@@ -169,7 +169,14 @@ const CommentTile: React.FC<CommentTileProps> = ({
<Text style={styles.date_time}>{' ' + timePosted}</Text>
</View>
<View style={styles.row}>
- <TouchableOpacity style={styles.row} onPress={() => {}}>
+ <TouchableOpacity
+ style={styles.row}
+ onPress={() => {
+ navigation.navigate('CommentReactionScreen', {
+ comment: commentObject,
+ screenType: screenType,
+ });
+ }}>
<Text style={[styles.date_time, styles.likeCount]}>
{commentObject.reaction_count}
</Text>