Add '@' to profile handle

This commit is contained in:
Clayton Wilson 2019-10-31 15:46:33 -04:00
parent 325d37f0de
commit 112988c8fb

View File

@ -76,7 +76,7 @@ class user extends Component {
const classes = this.props; const classes = this.props;
let profileMarkup = this.state.profile ? ( let profileMarkup = this.state.profile ? (
<div> <div>
<Typography variant='h5'>{this.state.profile} {this.state.verified ? (<VerifiedIcon style={{fill: "#1397D5"}}/>): (null)}</Typography> <Typography variant='h5'>@{this.state.profile} {this.state.verified ? (<VerifiedIcon style={{fill: "#1397D5"}}/>): (null)}</Typography>
</div>) : (<p>loading username...</p>); </div>) : (<p>loading username...</p>);