feat: add friends button on user profile

This commit is contained in:
Zamitto 2024-07-21 20:07:02 -03:00
parent 27610aa8cf
commit 6b8f2e6978
6 changed files with 124 additions and 29 deletions

View file

@ -293,6 +293,7 @@ export interface UserProfile {
id: string;
displayName: string;
profileImageUrl: string | null;
profileVisibility: "PUBLIC" | "PRIVATE" | "FRIEND";
totalPlayTimeInSeconds: number;
libraryGames: UserGame[];
recentGames: UserGame[];