From cf7747b92d895a603018f534fab757f0d6b3a95b Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Thu, 2 Jan 2020 16:26:43 +1100 Subject: [PATCH] disable onClick on ConversationListItem --- ts/components/session/LeftPaneContactSection.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/ts/components/session/LeftPaneContactSection.tsx b/ts/components/session/LeftPaneContactSection.tsx index 66c276012..88475d6f9 100644 --- a/ts/components/session/LeftPaneContactSection.tsx +++ b/ts/components/session/LeftPaneContactSection.tsx @@ -233,7 +233,6 @@ export class LeftPaneContactSection extends React.Component { key, style, }: RowRendererParamsType): JSX.Element | undefined => { - const { openConversationInternal } = this.props; const friends = this.getCurrentFriends(); const friendRequest = this.getFriendRequests(); @@ -251,7 +250,6 @@ export class LeftPaneContactSection extends React.Component { key={key} style={style} {...item} - onClick={openConversationInternal} i18n={window.i18n} /> );