File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
ts/components/leftpane/conversation-list-item Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import clsx from 'clsx';
4
4
import { useConvoIdFromContext } from '../../../contexts/ConvoIdContext' ;
5
5
import {
6
6
useHasUnread ,
7
- useIsOutgoingRequest ,
8
7
useIsPrivate ,
9
8
useIsTyping ,
10
9
useLastMessage ,
@@ -26,14 +25,9 @@ export const MessageItem = () => {
26
25
const hasUnread = useHasUnread ( conversationId ) ;
27
26
const isConvoTyping = useIsTyping ( conversationId ) ;
28
27
const isMessageRequest = useIsMessageRequestOverlayShown ( ) ;
29
- const isOutgoingRequest = useIsOutgoingRequest ( conversationId ) ;
30
28
31
29
const isSearching = useIsSearchingForType ( 'global' ) ;
32
30
33
- if ( isOutgoingRequest ) {
34
- return null ;
35
- }
36
-
37
31
if ( lastMessage ?. interactionType && lastMessage ?. interactionStatus ) {
38
32
return < InteractionItem conversationId = { conversationId } lastMessage = { lastMessage } /> ;
39
33
}
You can’t perform that action at this time.
0 commit comments