diff --git a/react/features/lobby/components/native/LobbyScreen.js b/react/features/lobby/components/native/LobbyScreen.js index 15794afd4..f9f7d880d 100644 --- a/react/features/lobby/components/native/LobbyScreen.js +++ b/react/features/lobby/components/native/LobbyScreen.js @@ -10,8 +10,6 @@ import { connect } from '../../../base/redux'; import { ASPECT_RATIO_NARROW } from '../../../base/responsive-ui'; import BaseTheme from '../../../base/ui/components/BaseTheme'; import { LargeVideo } from '../../../large-video/components'; -import HeaderNavigationButton - from '../../../mobile/navigation/components/HeaderNavigationButton'; import { navigate } from '../../../mobile/navigation/components/lobby/LobbyNavigationContainerRef'; import { screen } from '../../../mobile/navigation/routes'; @@ -36,25 +34,6 @@ type Props = AbstractProps & { * Implements a waiting screen that represents the participant being in the lobby. */ class LobbyScreen extends AbstractLobbyScreen { - /** - * Implements React's {@link Component#componentDidMount()}. Invoked - * immediately after this component is mounted. - * - * @inheritdoc - * @returns {void} - */ - componentDidMount() { - const { navigation, t } = this.props; - - navigation.setOptions({ - headerLeft: () => ( - - ) - }); - } - /** * Implements {@code PureComponent#render}. *