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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}