diff --git a/web/chat/chat-thread-list-item.react.js b/web/chat/chat-thread-list-item.react.js --- a/web/chat/chat-thread-list-item.react.js +++ b/web/chat/chat-thread-list-item.react.js @@ -95,7 +95,7 @@ return ( 0} + isSubsequentItem={index > 0} key={sidebarInfo.threadInfo.id} /> ); diff --git a/web/chat/chat-thread-list-sidebar.react.js b/web/chat/chat-thread-list-sidebar.react.js --- a/web/chat/chat-thread-list-sidebar.react.js +++ b/web/chat/chat-thread-list-sidebar.react.js @@ -15,10 +15,10 @@ type Props = { +sidebarInfo: SidebarInfo, - +isMultipleSidebarItem: boolean, + +isSubsequentItem: boolean, }; function ChatThreadListSidebar(props: Props): React.Node { - const { sidebarInfo, isMultipleSidebarItem } = props; + const { sidebarInfo, isSubsequentItem } = props; const { threadInfo, mostRecentNonLocalMessage } = sidebarInfo; const { currentUser: { unread }, @@ -40,10 +40,7 @@ onClick={onClick} >
{unreadDot}
- + ; + } + return ( <> - {extendArrow ?
: null} + {arrowExtender}