diff --git a/apps/desktop/src/pages/ConversationPage.tsx b/apps/desktop/src/pages/ConversationPage.tsx index 2a64e1d..5186d44 100644 --- a/apps/desktop/src/pages/ConversationPage.tsx +++ b/apps/desktop/src/pages/ConversationPage.tsx @@ -6,6 +6,7 @@ import { useParams } from 'react-router-dom'; import { ConversationHeader } from '../components/ConversationHeader'; import { EmojiPicker } from '../components/EmojiPicker'; +import { EmptyState } from '../components/EmptyState'; import { ForwardDialog } from '../components/ForwardDialog'; import { GroupInfoPanel } from '../components/GroupInfoPanel'; import { @@ -17,6 +18,7 @@ import { PollIcon, ReplyIcon, SearchIcon, + SendIcon, SmileIcon, SpinnerIcon, XIcon, @@ -670,7 +672,13 @@ export function ConversationPage() { ) : error ? ( {error} ) : messages.length === 0 ? ( -

+ } + title={t('app:chats.conv_empty_title', { defaultValue: 'Sag Hallo 👋' })} + description={t('app:chats.conv_empty_desc', { + defaultValue: 'Hier ist noch nichts. Schreibe die erste Nachricht.', + })} + /> ) : (