From 9a618e07ff6bb1a5ab66f55c7c541b1a4a3667ad Mon Sep 17 00:00:00 2001 From: syedansar Date: Sat, 8 Oct 2022 14:42:24 +0530 Subject: [PATCH] Improved streams are displayed on Streams screen --- src/streams/SubscriptionsScreen.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/streams/SubscriptionsScreen.js b/src/streams/SubscriptionsScreen.js index ad90546eaf8..9a88af92b2a 100644 --- a/src/streams/SubscriptionsScreen.js +++ b/src/streams/SubscriptionsScreen.js @@ -61,7 +61,7 @@ export default function SubscriptionsScreen(props: Props): Node { return [ { key: 'Pinned', data: sortedSubscriptions.filter(x => x.pin_to_top) }, { key: 'Unpinned', data: sortedSubscriptions.filter(x => !x.pin_to_top && x.in_home_view) }, - { key: 'Muted', data: sortedSubscriptions.filter(x => !x.in_home_view) }, + { key: 'Muted', data: sortedSubscriptions.filter(x => !x.pin_to_top && !x.in_home_view) }, ]; }, [subscriptions]);