diff options
author | Ivan Chen <ivan@tagg.id> | 2021-05-11 15:10:02 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-05-11 15:10:02 -0400 |
commit | 69c07634befdad4be416df843ecb803e760c5883 (patch) | |
tree | 1ce139c67b13255c0820b097c6ab366a0228657e /src/screens/profile/CommentReactionScreen.tsx | |
parent | 46cc8a33fe206c2c3bbd781374e727c1a42b9094 (diff) |
cleaned up dead code
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> |