diff --git a/app/screens/channel/channel.ios.js b/app/screens/channel/channel.ios.js
index 9d1c87543..c7a9159a9 100644
--- a/app/screens/channel/channel.ios.js
+++ b/app/screens/channel/channel.ios.js
@@ -36,50 +36,15 @@ export default class ChannelIOS extends ChannelBase {
render() {
const {height} = Dimensions.get('window');
- const {
- currentChannelId,
- isLandscape,
- } = this.props;
+ const {currentChannelId} = this.props;
const channelLoaderStyle = [style.channelLoader, {height}];
if ((DeviceTypes.IS_IPHONE_X || DeviceTypes.IS_TABLET)) {
channelLoaderStyle.push(style.iOSHomeIndicator);
}
- let safeViewContent;
- if (DeviceTypes.IS_IPHONE_X && isLandscape) {
- safeViewContent = (
-
-
-
-
-
-
-
-
-
-
-
- {LocalConfig.EnableMobileClientUpgrade && }
-
-
- );
- } else {
- safeViewContent = (
+ const drawerContent = (
+
@@ -106,12 +71,6 @@ export default class ChannelIOS extends ChannelBase {
/>
{LocalConfig.EnableMobileClientUpgrade && }
- );
- }
-
- const drawerContent = (
-
- {safeViewContent}