Revert "Add room name to browser tab title" (#5560)

Because it displays "undefined" in the title.

This reverts commit 86ebfe8dad.
This commit is contained in:
bgrozev
2020-04-01 22:03:14 -05:00
committed by GitHub
parent 9da0b7fee3
commit 171b065db1
@@ -120,7 +120,7 @@ class Conference extends AbstractConference<Props, *> {
* @inheritdoc
*/
componentDidMount() {
document.title = `${APP.conference.roomName} | ${interfaceConfig.APP_NAME}`;
document.title = interfaceConfig.APP_NAME;
this._start();
}