diff options
Diffstat (limited to 'src/store')
| -rw-r--r-- | src/store/actions/userFriends.ts | 2 | ||||
| -rw-r--r-- | src/store/actions/userX.ts | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/store/actions/userFriends.ts b/src/store/actions/userFriends.ts index 154ed20e..18ad247c 100644 --- a/src/store/actions/userFriends.ts +++ b/src/store/actions/userFriends.ts @@ -71,7 +71,6 @@ export const friendUnfriendUser = ( }); data = 'no_record'; } - console.log('friendship_status data: ', data); dispatch({ type: userXFriendshipEdited.type, payload: { @@ -114,7 +113,6 @@ export const declineFriendRequest = ( dispatch, ) => { try { - console.log('Requesting service to reject friend request'); const token = await getTokenOrLogout(dispatch); const success = await declineFriendRequestService(user_id, token); if (success) { diff --git a/src/store/actions/userX.ts b/src/store/actions/userX.ts index 39d3f918..07bea678 100644 --- a/src/store/actions/userX.ts +++ b/src/store/actions/userX.ts @@ -39,7 +39,6 @@ export const loadUserX = ( }); const token = await getTokenOrLogout(dispatch); loadProfileInfo(token, userId).then((data) => { - console.log('DATA FETCHED: ', data); dispatch({ type: userXProfileFetched.type, payload: {screenType, userId, data}, @@ -145,7 +144,6 @@ export const updateUserXProfileAllScreens = ( screens.forEach((screenType) => { if (userXInStore(state, screenType, userId)) { loadProfileInfo(token, userId).then((data) => { - console.log('DATA FETCHED: ', data); dispatch({ type: userXProfileFetched.type, payload: {screenType, userId, data}, |
