Removed unnecessary string wrapping (#3490)
* Removed unnecessary string wrapping
This commit is contained in:
parent
6f17988d17
commit
dc90800e50
|
@ -151,7 +151,7 @@ class DisplayName extends Component {
|
|||
className = 'displayname'
|
||||
id = { elementID }
|
||||
onClick = { this._onStartEditing }>
|
||||
{ `${appendSuffix(displayName, displayNameSuffix)}` }
|
||||
{ appendSuffix(displayName, displayNameSuffix) }
|
||||
</span>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue