Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dbkr committed Sep 25, 2017
1 parent 58ec732 commit 0b96871
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/views/groups/GroupMemberInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ module.exports = withMatrixClient(React.createClass({

const avatarUrl = this.props.matrixClient.mxcUrlToHttp(
this.props.groupMember.avatarUrl,
36, 36, 'crop'
36, 36, 'crop',
);

const BaseAvatar = sdk.getComponent('avatars.BaseAvatar');
Expand Down
2 changes: 1 addition & 1 deletion src/components/views/groups/GroupMemberTile.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default withMatrixClient(React.createClass({
const name = this.props.member.displayname || this.props.member.userId;
const avatarUrl = this.props.matrixClient.mxcUrlToHttp(
this.props.member.avatarUrl,
36, 36, 'crop'
36, 36, 'crop',
);

const av = (
Expand Down

0 comments on commit 0b96871

Please sign in to comment.