fix: sanity check in case repack is null

This commit is contained in:
Zamitto 2024-05-18 19:05:55 -03:00
parent 5b864367e8
commit be13ecc5aa
2 changed files with 2 additions and 2 deletions

View file

@ -95,7 +95,7 @@ export interface Game extends Omit<CatalogueEntry, "cover"> {
folderName: string;
downloadPath: string | null;
repacks: GameRepack[];
repack: GameRepack;
repack: GameRepack | null;
progress: number;
fileVerificationProgress: number;
decompressionProgress: number;