Disable obsolete feature flags

This commit is contained in:
Scott Nonnenberg 2020-10-07 11:27:08 -07:00 committed by Josh Perez
parent 4206f1c463
commit b914b59969
8 changed files with 13 additions and 68 deletions

View file

@ -248,10 +248,6 @@ export class ConversationHeader extends React.Component<PropsType> {
}
public renderOutgoingAudioCallButton(): JSX.Element | null {
if (!window.CALLING) {
return null;
}
const {
i18n,
isMe,
@ -281,10 +277,6 @@ export class ConversationHeader extends React.Component<PropsType> {
}
public renderOutgoingVideoCallButton(): JSX.Element | null {
if (!window.CALLING) {
return null;
}
const { i18n, isMe, type } = this.props;
if (type === 'group' || isMe) {