Removed unnecessary string wrapping (#3490)

* Removed unnecessary string wrapping
This commit is contained in:
Lars Spaenij
2018-10-02 05:39:16 +02:00
committed by Lyubomir Marinov
parent 6f17988d17
commit dc90800e50

View File

@@ -151,7 +151,7 @@ class DisplayName extends Component {
className = 'displayname'
id = { elementID }
onClick = { this._onStartEditing }>
{ `${appendSuffix(displayName, displayNameSuffix)}` }
{ appendSuffix(displayName, displayNameSuffix) }
</span>
);
}