chats: add chat avatars and profile view-only modal
All checks were successful
CI / test (push) Successful in 23s

This commit is contained in:
2026-03-08 13:53:29 +03:00
parent f7413bc626
commit bc9d943d11
10 changed files with 236 additions and 114 deletions

View File

@@ -7,6 +7,7 @@ export interface Chat {
public_id: string;
type: ChatType;
title: string | null;
avatar_url?: string | null;
display_title?: string | null;
handle?: string | null;
description?: string | null;
@@ -23,6 +24,7 @@ export interface Chat {
counterpart_user_id?: number | null;
counterpart_name?: string | null;
counterpart_username?: string | null;
counterpart_avatar_url?: string | null;
counterpart_is_online?: boolean | null;
counterpart_last_seen_at?: string | null;
last_message_text?: string | null;