diff --git a/app/games/games-page-client.tsx b/app/games/games-page-client.tsx index 6ff1001..611a142 100644 --- a/app/games/games-page-client.tsx +++ b/app/games/games-page-client.tsx @@ -686,6 +686,14 @@ function GameCard({ game }: { game: GamesListItem }) { compact /> )} + {game.steamReviewScore != null && ( + + + + + {game.steamReviewScore}% + + )}
{game.benchmarkCount > 0 ? ( diff --git a/app/search/page.tsx b/app/search/page.tsx index e614d9e..c0ffec6 100644 --- a/app/search/page.tsx +++ b/app/search/page.tsx @@ -503,8 +503,11 @@ function SearchResultCard({ {/* Steam review score */} {result.steamReviewScore != null && ( - - {result.steamReviewScore}% positive + + + + + {result.steamReviewScore}% Positive )}