diff --git a/frontend/static/js/api/profiles.js b/frontend/static/js/api/profiles.js index 1a1eb54..8a00d8a 100644 --- a/frontend/static/js/api/profiles.js +++ b/frontend/static/js/api/profiles.js @@ -24,7 +24,7 @@ class Profiles let profiles = [] response_data.forEach((profile) => { - profiles.push(new Profile(this.client, profile.username, profile.user_id, profile.avatar_url)) + profiles.push(new Profile(this.client, profile.username, profile.user_id, profile.avatar)) }); return profiles; }