diff options
| author | Ashm Walia <ashmwalia@outlook.com> | 2021-01-16 09:44:41 -0800 |
|---|---|---|
| committer | Ashm Walia <ashmwalia@outlook.com> | 2021-01-16 09:44:41 -0800 |
| commit | d85eaeb878cbbeedda860ee5809b81100c910af2 (patch) | |
| tree | 6ef10bb63bde79ce166d9bc916feb5483dbf635b /src/store | |
| parent | 72aabf60d815cdecf59aaef86df57be6a557efd0 (diff) | |
Done
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}, |
