diff options
Diffstat (limited to 'src/screens/profile/CommentReactionScreen.tsx')
-rw-r--r-- | src/screens/profile/CommentReactionScreen.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/screens/profile/CommentReactionScreen.tsx b/src/screens/profile/CommentReactionScreen.tsx index 23a1f768..488497ee 100644 --- a/src/screens/profile/CommentReactionScreen.tsx +++ b/src/screens/profile/CommentReactionScreen.tsx @@ -29,7 +29,6 @@ const CommentReactionScreen: React.FC<CommentReactionScreenProps> = ({ const loadUsers = async () => { const response = await getUsersReactedToAComment(comment); if (response.length !== 0) { - console.log(response); setUsers(users); } else { Alert.alert(ERROR_SOMETHING_WENT_WRONG); @@ -47,7 +46,7 @@ const CommentReactionScreen: React.FC<CommentReactionScreenProps> = ({ result={users} screenType={screenType} userId={undefined} - hideSubheader + hideFriendsFeature /> </ScrollView> </SafeAreaView> |