diff --git a/app/components/channel_actions/channel_actions.tsx b/app/components/channel_actions/channel_actions.tsx
index 16c31f576a..33af421f79 100644
--- a/app/components/channel_actions/channel_actions.tsx
+++ b/app/components/channel_actions/channel_actions.tsx
@@ -5,7 +5,6 @@ import React, {useCallback} from 'react';
import {StyleSheet, View} from 'react-native';
import ChannelInfoStartButton from '@calls/components/channel_info_start';
-import AddPeopleBox from '@components/channel_actions/add_people_box';
import CopyChannelLinkBox from '@components/channel_actions/copy_channel_link_box';
import FavoriteBox from '@components/channel_actions/favorite_box';
import MutedBox from '@components/channel_actions/mute_box';
@@ -14,6 +13,8 @@ import {useServerUrl} from '@context/server';
import {dismissBottomSheet} from '@screens/navigation';
import {isTypeDMorGM} from '@utils/channel';
+// import AddPeopleBox from '@components/channel_actions/add_people_box';
+
type Props = {
channelId: string;
channelType?: ChannelType;
@@ -69,6 +70,7 @@ const ChannelActions = ({channelId, channelType, inModal = false, dismissChannel
testID={`${testID}.set_header.action`}
/>
}
+ {/* Add back in after MM-47655 is resolved. https://mattermost.atlassian.net/browse/MM-47655
{!isDM &&
}
+ */}
{!isDM && !callsEnabled &&
<>
diff --git a/app/screens/channel/channel_post_list/intro/options/index.tsx b/app/screens/channel/channel_post_list/intro/options/index.tsx
index 2d848eba1f..0e96eea36e 100644
--- a/app/screens/channel/channel_post_list/intro/options/index.tsx
+++ b/app/screens/channel/channel_post_list/intro/options/index.tsx
@@ -4,7 +4,7 @@
import React from 'react';
import {StyleSheet, View} from 'react-native';
-import AddPeopleBox from '@components/channel_actions/add_people_box';
+// import AddPeopleBox from '@components/channel_actions/add_people_box';
import FavoriteBox from '@components/channel_actions/favorite_box';
import InfoBox from '@components/channel_actions/info_box';
import SetHeaderBox from '@components/channel_actions/set_header_box';
@@ -39,9 +39,10 @@ const styles = StyleSheet.create({
},
});
-const IntroOptions = ({channelId, header, favorite, people}: Props) => {
+const IntroOptions = ({channelId, header, favorite}: Props) => {
return (
+ {/* Add back in after MM-47655 is resolved. https://mattermost.atlassian.net/browse/MM-47655
{people &&
{
testID='channel_post_list.intro_options.add_people.action'
/>
}
+ */}
{header &&
{
}
{/**/}
+ {/* Add back in after MM-47653 is resolved. https://mattermost.atlassian.net/browse/MM-47653
{type !== General.DM_CHANNEL &&
}
+ */}
{callsEnabled && !isDMorGM && // if calls is not enabled, copy link will show in the channel actions