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'
|
className = 'displayname'
|
||||||
id = { elementID }
|
id = { elementID }
|
||||||
onClick = { this._onStartEditing }>
|
onClick = { this._onStartEditing }>
|
||||||
{ `${appendSuffix(displayName, displayNameSuffix)}` }
|
{ appendSuffix(displayName, displayNameSuffix) }
|
||||||
</span>
|
</span>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue