From e8074e7da04445550b48eacda6a065893e8374c4 Mon Sep 17 00:00:00 2001 From: byGalax Date: Sat, 16 May 2026 16:56:27 +0200 Subject: [PATCH] feat(desktop): empty-state for empty conversation --- apps/desktop/src/pages/ConversationPage.tsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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.', + })} + /> ) : (