From fbcd592609cb6518bb07c117a7b8da37240f8374 Mon Sep 17 00:00:00 2001 From: Garret Patti <42485635+garretpatti@users.noreply.github.com> Date: Sat, 18 Apr 2026 12:44:01 -0400 Subject: [PATCH] Use game cover as series cover if series cover is not available --- src/components/games/GamesView.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/games/GamesView.tsx b/src/components/games/GamesView.tsx index 041b9bc..9d4313b 100644 --- a/src/components/games/GamesView.tsx +++ b/src/components/games/GamesView.tsx @@ -304,6 +304,7 @@ function SeriesCard({ series, onClick }: { series: GameSeries; onClick: () => vo const seriesPlatforms: GamePlatform[] = [ ...new Set(series.games.flatMap((g) => g.platforms)), ] + const resolvedCover = series.coverUrl ?? series.games[0]?.coverUrl ?? null return (