diff --git a/ts/components/session/LeftPaneContactSection.tsx b/ts/components/session/LeftPaneContactSection.tsx index 752b06d44..273145208 100644 --- a/ts/components/session/LeftPaneContactSection.tsx +++ b/ts/components/session/LeftPaneContactSection.tsx @@ -336,6 +336,7 @@ export class LeftPaneContactSection extends React.Component { const { sentFriendsRequest } = this.props; const friends = this.getCurrentFriends(); const length = sentFriendsRequest.length + friends.length; + const combined = [...sentFriendsRequest, ...friends]; const list = (
@@ -345,6 +346,7 @@ export class LeftPaneContactSection extends React.Component { className="module-left-pane__virtual-list" height={height} rowCount={length} + combined={combined} rowHeight={64} rowRenderer={this.renderRow} width={width}