feat: finish ui for modal showing pending requests

This commit is contained in:
Zamitto 2024-07-10 14:29:04 -03:00
parent 6cc8e8f5fe
commit 007da03837
4 changed files with 52 additions and 54 deletions

View file

@ -276,12 +276,10 @@ export interface UserFriend {
}
export interface PendingFriendRequest {
AId: string;
ADisplayName: string;
AProfileImageUrl: string | null;
BId: string;
BDisplayName: string;
BProfileImageUrl: string | null;
userId: string;
displayName: string;
profileImageUrl: string | null;
type: "SENT" | "RECEIVED";
}
export interface UserProfile {