Skip to content

Commit 9a618e0

Browse files
committed
Improved streams are displayed on Streams screen
1 parent be3aaf3 commit 9a618e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/streams/SubscriptionsScreen.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export default function SubscriptionsScreen(props: Props): Node {
6161
return [
6262
{ key: 'Pinned', data: sortedSubscriptions.filter(x => x.pin_to_top) },
6363
{ key: 'Unpinned', data: sortedSubscriptions.filter(x => !x.pin_to_top && x.in_home_view) },
64-
{ key: 'Muted', data: sortedSubscriptions.filter(x => !x.in_home_view) },
64+
{ key: 'Muted', data: sortedSubscriptions.filter(x => !x.pin_to_top && !x.in_home_view) },
6565
];
6666
}, [subscriptions]);
6767

0 commit comments

Comments
 (0)