From bedddd47604398615bd96172f14816c3e3e1c078 Mon Sep 17 00:00:00 2001 From: Calin Chitu Date: Fri, 10 Jun 2022 15:42:57 +0300 Subject: [PATCH] fix(lobby/native) removed nav button overwrite --- .../lobby/components/native/LobbyScreen.js | 21 ------------------- 1 file changed, 21 deletions(-) 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}. *