fix: solve small pm chat ui issues

unwrap the pill
fix the fetching images in pm not auto download
This commit is contained in:
2026-05-25 17:17:32 +02:00
parent 1259645706
commit 161f57f52e
28 changed files with 697 additions and 82 deletions

View File

@@ -17,6 +17,8 @@ export interface Message {
senderName: string;
content: string;
timestamp: number;
kind?: 'user' | 'system';
systemEvent?: 'call-started';
editedAt?: number;
reactions: Reaction[];
isDeleted: boolean;