diff --git a/src/renderer/src/components/game-card/game-card.tsx b/src/renderer/src/components/game-card/game-card.tsx
index 8423ebc1..9859fe1e 100644
--- a/src/renderer/src/components/game-card/game-card.tsx
+++ b/src/renderer/src/components/game-card/game-card.tsx
@@ -75,40 +75,40 @@ export function GameCard({ game, ...props }: GameCardProps) {
{game.title}
-{uniqueRepackers.length > 0 ? (
-
- {firstThreeRepackers.map((repacker) => (
- -
- {repacker}
-
- ))}
- {remainingCount > 0 && (
- -
-
- +{remainingCount} {t("game_card:available", { count: remainingCount })}
-
-
- )}
-
-) : (
- {t("no_downloads")}
-)}
-
-
-
-
-
- {stats ? numberFormatter.format(stats.downloadCount) : "…"}
-
-
-
-
-
- {stats ? numberFormatter.format(stats.playerCount) : "…"}
-
-
-
+ {uniqueRepackers.length > 0 ? (
+
+ {firstThreeRepackers.map((repacker) => (
+ -
+ {repacker}
+
+ ))}
+ {remainingCount > 0 && (
+ -
+
+ +{remainingCount}{" "}
+ {t("game_card:available", { count: remainingCount })}
+
+
+ )}
+
+ ) : (
+ {t("no_downloads")}
+ )}
+
+
+
+
+ {stats ? numberFormatter.format(stats.downloadCount) : "…"}
+
+
+
+
+
+ {stats ? numberFormatter.format(stats.playerCount) : "…"}
+
+
+