|
|
|
@ -352,10 +352,11 @@ const ConversationListItem = (props: Props) => {
|
|
|
|
|
lastMessage={lastMessage}
|
|
|
|
|
/>
|
|
|
|
|
{isMessageRequest ? (
|
|
|
|
|
<StyledButtonContainer
|
|
|
|
|
<Flex
|
|
|
|
|
className="module-conversation-list-item__button-container"
|
|
|
|
|
container={true}
|
|
|
|
|
flexDirection="row"
|
|
|
|
|
justifyContent="flex-end"
|
|
|
|
|
>
|
|
|
|
|
<SessionButton
|
|
|
|
|
onClick={handleConversationDecline}
|
|
|
|
@ -369,7 +370,7 @@ const ConversationListItem = (props: Props) => {
|
|
|
|
|
>
|
|
|
|
|
Accept
|
|
|
|
|
</SessionButton>
|
|
|
|
|
</StyledButtonContainer>
|
|
|
|
|
</Flex>
|
|
|
|
|
) : null}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
@ -392,8 +393,4 @@ const ConversationListItem = (props: Props) => {
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const StyledButtonContainer = styled(Flex)`
|
|
|
|
|
justify-content: space-evenly;
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
export const MemoConversationListItemWithDetails = React.memo(ConversationListItem, _.isEqual);
|
|
|
|
|