diff --git a/ts/components/session/LeftPaneContactSection.tsx b/ts/components/session/LeftPaneContactSection.tsx index dd884a8f7..7081c2d4d 100644 --- a/ts/components/session/LeftPaneContactSection.tsx +++ b/ts/components/session/LeftPaneContactSection.tsx @@ -144,7 +144,8 @@ export class LeftPaneContactSection extends React.Component { style, }: RowRendererParamsType): JSX.Element | undefined => { const { sentFriendsRequest } = this.props; - const friends = window.getFriendsFromContacts(this.props.friends); + const contacts = this.props.friends.filter(f => f.type === 'direct'); + const friends = window.getFriendsFromContacts(contacts); const combined = [...sentFriendsRequest, ...friends]; const item = combined[index];