Skip to content
This repository has been archived by the owner on Oct 1, 2019. It is now read-only.

Commit

Permalink
Fix tools/PeopleToolPage
Browse files Browse the repository at this point in the history
  • Loading branch information
voidxnull committed Nov 1, 2016
1 parent 1240fb6 commit 7bf38c0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/components/tools/user-details.js
Expand Up @@ -39,7 +39,7 @@ export default function UserDetails({ current_user, following, triggers, user })
<div className="tools_page__details_col">
<div className="tools_details">
<div className="tools_details__left_col">
<Avatar isRound={false} size={140} user={user.toJS()} />
<Avatar isRound={false} size={140} user={user} />
</div>
<div>
<Link className="tools_details__title" to={`/user/${user.get('username')}`}>
Expand All @@ -49,10 +49,10 @@ export default function UserDetails({ current_user, following, triggers, user })
{fullName}
</div>
<FollowButton
active_user={current_user.toJS()}
following={following.toJS()}
active_user={current_user}
following={following}
triggers={triggers}
user={user.toJS()}
user={user}
/>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/tools/user-list.js
Expand Up @@ -41,7 +41,7 @@ export default function UserList({ onClick, users, selectedUserId }) {
key={index}
onClick={handleClick}
>
<Avatar size={23} user={user.toJS()} />
<Avatar size={23} user={user} />
<span className="tools_item__child-padded">{user.get('username')}</span>
</div>
);
Expand Down

0 comments on commit 7bf38c0

Please sign in to comment.