feat: Include chat public key in conversation data and enhance chat page layout for full width and dynamic height.

This commit is contained in:
Christomatt
2026-01-27 04:16:05 +01:00
parent 5262cb1dbd
commit c007741b65
4 changed files with 18 additions and 5 deletions
+6 -1
View File
@@ -9,7 +9,12 @@ import './chat.css';
interface Conversation {
id: string;
participant2: { handle: string; displayName: string; avatarUrl: string | null; chatPublicKey: string | null; };
participant2: {
handle: string;
displayName: string;
avatarUrl: string | null;
chatPublicKey: string | null;
};
lastMessageAt: string;
lastMessagePreview: string;
unreadCount: number;