diff --git a/src/renderer/src/pages/game-details/hero/hero-panel-playtime.tsx b/src/renderer/src/pages/game-details/hero/hero-panel-playtime.tsx index 0b8fa89d..6a0d2f93 100644 --- a/src/renderer/src/pages/game-details/hero/hero-panel-playtime.tsx +++ b/src/renderer/src/pages/game-details/hero/hero-panel-playtime.tsx @@ -54,7 +54,7 @@ export function HeroPanelPlaytime() { if (!game) return null; const hasDownload = - ["active", "paused"].includes(game.status) && game.progress !== 1; + ["active", "paused"].includes(game.status as string) && game.progress !== 1; const isGameDownloading = game.status === "active" && lastPacket?.game.id === game.id;