Don't alias username

This commit is contained in:
Chi Vinh Le
2017-06-27 23:51:49 +07:00
parent 33990053fb
commit 97ab338486
2 changed files with 2 additions and 2 deletions
@@ -34,7 +34,7 @@ export default withFragments({
}
user {
id
name: username
username
}
action_summaries {
__typename
@@ -24,7 +24,7 @@ export default class AuthorName extends Component {
return (
<div
className={`${packagename}-text`}>
{author && author.name}
{author && author.username}
</div>
);
}