feat: update endpoints

This commit is contained in:
Zamitto 2024-08-19 19:55:27 -03:00
parent 5369274c6e
commit bde396c7db
9 changed files with 9 additions and 9 deletions

View file

@ -12,7 +12,7 @@ const getUser = async (
): Promise<UserProfile | null> => {
try {
const [profile, friends] = await Promise.all([
HydraApi.get(`/user/${userId}`),
HydraApi.get(`/users/${userId}`),
getUserFriends(userId, 12, 0).catch(() => {
return { totalFriends: 0, friends: [] };
}),