Skip to content

Commit

Permalink
Improved streams are displayed on Streams screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Syed-Ansar committed Oct 8, 2022
1 parent be3aaf3 commit 9a618e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/streams/SubscriptionsScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -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]);

Expand Down

0 comments on commit 9a618e0

Please sign in to comment.