aboutsummaryrefslogtreecommitdiff
path: root/src/services
diff options
context:
space:
mode:
Diffstat (limited to 'src/services')
-rw-r--r--src/services/UserFriendsServices.ts3
-rw-r--r--src/services/UserProfileService.ts1
2 files changed, 0 insertions, 4 deletions
diff --git a/src/services/UserFriendsServices.ts b/src/services/UserFriendsServices.ts
index 97e319f1..18a92481 100644
--- a/src/services/UserFriendsServices.ts
+++ b/src/services/UserFriendsServices.ts
@@ -64,7 +64,6 @@ export const friendOrUnfriendUser = async (
},
body: body,
});
- console.log('FOF', response);
const status = response.status;
if (Math.floor(status / 100) === 2) {
return true;
@@ -126,8 +125,6 @@ export const acceptFriendRequestService = async (
token: string | null,
) => {
try {
- console.log('requester_id: ', requester_id);
- console.log('token: ', token);
const response = await fetch(FRIENDS_ENDPOINT + `${requester_id}/`, {
method: 'PATCH',
headers: {
diff --git a/src/services/UserProfileService.ts b/src/services/UserProfileService.ts
index 80ab4fff..c9ec3604 100644
--- a/src/services/UserProfileService.ts
+++ b/src/services/UserProfileService.ts
@@ -42,7 +42,6 @@ export const loadProfileInfo = async (token: string, userId: string) => {
friendship_status,
friendship_requester_id,
} = info;
- console.log('friendship_requester: ', friendship_requester_id);
birthday = birthday && moment(birthday).format('YYYY-MM-DD');
return {
name,