We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be3aaf3 commit 9a618e0Copy full SHA for 9a618e0
src/streams/SubscriptionsScreen.js
@@ -61,7 +61,7 @@ export default function SubscriptionsScreen(props: Props): Node {
61
return [
62
{ key: 'Pinned', data: sortedSubscriptions.filter(x => x.pin_to_top) },
63
{ 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) },
+ { key: 'Muted', data: sortedSubscriptions.filter(x => !x.pin_to_top && !x.in_home_view) },
65
];
66
}, [subscriptions]);
67
0 commit comments