From 17250a4609efbdd4acfe106fdea6f681f85c9471 Mon Sep 17 00:00:00 2001 From: William Grant Date: Fri, 24 May 2024 11:01:00 +1000 Subject: [PATCH] fix: reset right panel when we swap conversations --- .../leftpane/conversation-list-item/ConversationListItem.tsx | 4 +--- ts/state/ducks/conversations.ts | 2 ++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ts/components/leftpane/conversation-list-item/ConversationListItem.tsx b/ts/components/leftpane/conversation-list-item/ConversationListItem.tsx index 27ab49ddf..78970c6ad 100644 --- a/ts/components/leftpane/conversation-list-item/ConversationListItem.tsx +++ b/ts/components/leftpane/conversation-list-item/ConversationListItem.tsx @@ -63,7 +63,7 @@ const AvatarItem = () => { }; type Props = { conversationId: string; style?: CSSProperties }; -const ConversationListItemInner = (props: Props) => { +export const ConversationListItem = (props: Props) => { const { conversationId, style } = props; const key = `conversation-item-${conversationId}`; @@ -137,5 +137,3 @@ const ConversationListItemInner = (props: Props) => { ); }; - -export const ConversationListItem = ConversationListItemInner; diff --git a/ts/state/ducks/conversations.ts b/ts/state/ducks/conversations.ts index 9529421ef..198b8a83a 100644 --- a/ts/state/ducks/conversations.ts +++ b/ts/state/ducks/conversations.ts @@ -26,6 +26,7 @@ import { DisappearingMessageType, } from '../../session/disappearing_messages/types'; import { ReactionList } from '../../types/Reaction'; +import { resetRightOverlayMode } from './section'; export type CallNotificationType = 'missed-call' | 'started-call' | 'answered-a-call'; @@ -1184,6 +1185,7 @@ export async function openConversationWithMessages(args: { initialQuotes, }) ); + window.inboxStore?.dispatch(resetRightOverlayMode()); } export async function openConversationToSpecificMessage(args: {