fix price display

This commit is contained in:
code002lover 2026-01-12 12:04:17 +01:00
parent acc6bc4359
commit 86683d410f

View File

@ -86,7 +86,7 @@ export function FilteredGamesList({
fontWeight: 600, fontWeight: 600,
}} }}
> >
{price === 0 ? "0 (Free)" : price} {price === 0 ? "0€ (Free)" : `${price}`}
</div> </div>
</div> </div>
<GameImage game={game} /> <GameImage game={game} />