perf(web): reduce member profile roundtrips in chat info
Some checks are pending
CI / test (push) Has started running

This commit is contained in:
2026-03-08 21:33:11 +03:00
parent cb37e735b0
commit 3506231295
3 changed files with 28 additions and 5 deletions

View File

@@ -46,6 +46,9 @@ export interface ChatMember {
user_id: number;
role: ChatMemberRole;
joined_at: string;
username?: string | null;
name?: string | null;
avatar_url?: string | null;
}
export interface ChatBan {