diff --git a/native/chat/settings/thread-settings.react.js b/native/chat/settings/thread-settings.react.js --- a/native/chat/settings/thread-settings.react.js +++ b/native/chat/settings/thread-settings.react.js @@ -373,11 +373,13 @@ key: 'pushNotifs', threadInfo, }); - listData.push({ - itemType: 'homeNotifs', - key: 'homeNotifs', - threadInfo, - }); + if (threadInfo.type !== threadTypes.SIDEBAR) { + listData.push({ + itemType: 'homeNotifs', + key: 'homeNotifs', + threadInfo, + }); + } listData.push({ itemType: 'footer', key: 'subscriptionFooter',