diff --git a/ts/components/conversation/SessionConversation.tsx b/ts/components/conversation/SessionConversation.tsx index 99a553f13..e8db1d73a 100644 --- a/ts/components/conversation/SessionConversation.tsx +++ b/ts/components/conversation/SessionConversation.tsx @@ -52,7 +52,7 @@ import { InConversationCallContainer } from '../calling/InConversationCallContai import { LightboxGallery, MediaItemType } from '../lightbox/LightboxGallery'; import { ConversationHeaderWithDetails } from './ConversationHeader'; import { SessionRightPanelWithDetails } from './SessionRightPanel'; -import { NoMessageNoMessageInConversation } from './SubtleNotification'; +import { NoMessageInConversation } from './SubtleNotification'; import { MessageDetail } from './message/message-item/MessageDetail'; import styled from 'styled-components'; @@ -271,7 +271,7 @@ export class SessionConversation extends React.Component { {lightBoxOptions?.media && this.renderLightBox(lightBoxOptions)}
- + } diff --git a/ts/components/conversation/SubtleNotification.tsx b/ts/components/conversation/SubtleNotification.tsx index 57c9a3ce2..688211458 100644 --- a/ts/components/conversation/SubtleNotification.tsx +++ b/ts/components/conversation/SubtleNotification.tsx @@ -54,7 +54,7 @@ export const ConversationRequestExplanation = () => { /** * This component is used to display a warning when the user is looking at an empty conversation. */ -export const NoMessageNoMessageInConversation = () => { +export const NoMessageInConversation = () => { const selectedConversation = useSelectedConversationKey(); const hasMessage = useSelector(getSelectedHasMessages);