diff --git a/app/components/sidebars/main/channels_list/list/list.js b/app/components/sidebars/main/channels_list/list/list.js index 04a490fcc..152bf42f5 100644 --- a/app/components/sidebars/main/channels_list/list/list.js +++ b/app/components/sidebars/main/channels_list/list/list.js @@ -466,6 +466,9 @@ export default class List extends PureComponent { // Add the rest if (this.props.categories) { this.props.categories.reduce((prev, cat) => { + if (cat.type === 'favorites' && !cat.channel_ids.length) { + return prev; + } prev.push({ name: cat.display_name, action: cat.type === 'direct_messages' ? this.goToDirectMessages : () => this.showCreateChannelOptions(cat),