change $ to €

This commit is contained in:
code002lover 2026-01-12 11:14:42 +01:00
parent d42ed445d8
commit fdbd88dd7e
2 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ export function GameFilter() {
</div>
<div className="filter-group">
<label htmlFor="max-price">Maximum price ($)</label>
<label htmlFor="max-price">Maximum price ()</label>
<input
id="max-price"
type="number"

View File

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