fix warning

This commit is contained in:
Zamitto 2024-06-16 18:39:28 -03:00
parent 38e6f010d6
commit 54d137e3ae
3 changed files with 6 additions and 6 deletions

View file

@ -85,7 +85,7 @@ export interface CatalogueEntry {
repacks: GameRepack[];
}
export interface ProfileGame {
export interface UserGame {
objectID: string;
shop: GameShop;
title: string;
@ -254,8 +254,8 @@ export interface UserProfile {
id: string;
displayName: string;
profileImageUrl: string | null;
libraryGames: ProfileGame[];
recentGames: ProfileGame[];
libraryGames: UserGame[];
recentGames: UserGame[];
}
export interface DownloadSource {