Remove redundant slice

pull/21833/head
Luke Barnard 2017-09-21 10:34:11 +01:00
parent 7ef55946da
commit 03ddb63507
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ const FeaturedUser = React.createClass({
render: function() {
const BaseAvatar = sdk.getComponent("avatars.BaseAvatar");
const name = this.props.summaryInfo.displayname || this.props.summaryInfo.user_id.slice(1);
const name = this.props.summaryInfo.displayname || this.props.summaryInfo.user_id;
const permalink = 'https://matrix.to/#/' + this.props.summaryInfo.user_id;
const userNameNode = <a href={permalink} onClick={this.onClick}>{name}</a>;