Browse Source

Removed unnecessary string wrapping (#3490)

* Removed unnecessary string wrapping
master
Lars Spaenij 7 years ago
parent
commit
dc90800e50
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      react/features/display-name/components/DisplayName.web.js

+ 1
- 1
react/features/display-name/components/DisplayName.web.js View File

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

Loading…
Cancel
Save