feat: pending requests on modal

This commit is contained in:
Zamitto 2024-07-09 16:14:47 -03:00
parent 6ccbff0160
commit 6cc8e8f5fe
5 changed files with 244 additions and 55 deletions

View file

@ -277,7 +277,11 @@ export interface UserFriend {
export interface PendingFriendRequest {
AId: string;
ADisplayName: string;
AProfileImageUrl: string | null;
BId: string;
BDisplayName: string;
BProfileImageUrl: string | null;
}
export interface UserProfile {