diff --git a/ts/components/session/LeftPaneChannelSection.tsx b/ts/components/session/LeftPaneChannelSection.tsx index 2eaf2c9b6..0ae41254b 100644 --- a/ts/components/session/LeftPaneChannelSection.tsx +++ b/ts/components/session/LeftPaneChannelSection.tsx @@ -86,8 +86,7 @@ export class LeftPaneChannelSection extends React.Component { if (conversationList !== undefined) { conversationList = conversationList.filter( // a channel is either a public group or a rss group - conversation => - conversation && conversation.type === 'group' + conversation => conversation && conversation.type === 'group' ); }