Move the default brand into the config module

This commit is contained in:
J. Ryan Stinnett 2020-07-09 18:20:57 +01:00
parent 7686039874
commit 5f78522681
3 changed files with 6 additions and 3 deletions

View file

@ -1819,7 +1819,7 @@ export default class MatrixChat extends React.PureComponent<IProps, IState> {
} else {
subtitle = `${this.subTitleStatus} ${subtitle}`;
}
document.title = `${SdkConfig.get().brand || 'Riot'} ${subtitle}`;
document.title = `${SdkConfig.get().brand} ${subtitle}`;
}
updateStatusIndicator(state: string, prevState: string) {