MM-44652 : Temporarily hides NotificationPreferences (#6807)

This commit is contained in:
Avinash Lingaloo
2022-11-30 21:45:54 +04:00
committed by GitHub
parent 7a478ec11d
commit b7f2969e08

View File

@@ -10,7 +10,6 @@ import {isTypeDMorGM} from '@utils/channel';
import EditChannel from './edit_channel';
import IgnoreMentions from './ignore_mentions';
import Members from './members';
import NotificationPreference from './notification_preference';
import PinnedMessages from './pinned_messages';
type Props = {
@@ -27,7 +26,7 @@ const Options = ({channelId, type, callsEnabled}: Props) => {
{type !== General.DM_CHANNEL &&
<IgnoreMentions channelId={channelId}/>
}
<NotificationPreference channelId={channelId}/>
{/*<NotificationPreference channelId={channelId}/>*/}
<PinnedMessages channelId={channelId}/>
{type !== General.DM_CHANNEL &&
<Members channelId={channelId}/>