aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/services/ExploreService.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/services/ExploreService.ts b/src/services/ExploreService.ts
index 26dccd18..43c2a96a 100644
--- a/src/services/ExploreService.ts
+++ b/src/services/ExploreService.ts
@@ -72,8 +72,8 @@ export const getDiscoverUsers = async (id: number) => {
return EMPTY_PROFILE_PREVIEW_LIST;
}
const data = await response.json();
- console.log('USERS: ', data);
- return data.users;
+ const users: ProfilePreviewType[] = data.users;
+ return users;
} catch (error) {
console.log('Error fetching SP user data');
console.log(error);