diff options
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 ee32f889..a1810b71 100644 --- a/src/components/comments/CommentTile.tsx +++ b/src/components/comments/CommentTile.tsx @@ -173,7 +173,7 @@ const CommentTile: React.FC<CommentTileProps> = ({ <View style={styles.row}> <TouchableOpacity style={styles.row} - disabled={commentObject.reaction_count === 0} + disabled={commentObject.reaction_count === 0 && !liked} onPress={() => { navigation.navigate('CommentReactionScreen', { comment: commentObject, |