diff --git a/src/components/ItemCard.astro b/src/components/ItemCard.astro
index 5382d49..a7b3052 100644
--- a/src/components/ItemCard.astro
+++ b/src/components/ItemCard.astro
@@ -2,6 +2,7 @@
import { getHighestWeightedLanguage, getLocales, getName } from '../lib/utils/langDriver';
interface Props {
+ category: string;
id: string;
level: string;
name: string;
@@ -17,7 +18,7 @@ const lang = await getLocales(Astro.cookies.get('language')?.value ?? await getH
{Astro.props.name} | {Astro.props.level}
-
{Astro.props.description}
+
{Astro.props.description}
[more]
i
diff --git a/src/pages/game/buildings.astro b/src/pages/game/buildings.astro
index a94a2d8..493a2be 100644
--- a/src/pages/game/buildings.astro
+++ b/src/pages/game/buildings.astro
@@ -1,7 +1,7 @@
---
import Layout from '../../layouts/Layout.astro';
import NavBar from '../../components/NavBar.astro';
-import BuildingCard from '../../components/ItemCard.astro';
+import ItemCard from '../../components/ItemCard.astro';
import { getUserByAccessToken } from '../../lib/db/users';
import { getHighestWeightedLanguage, getLocales, getName, getObj } from '../../lib/utils/langDriver';
import ResourceBar from '../../components/ResourceBar.astro';
@@ -89,7 +89,8 @@ const buildingsByCategory = buildingsList.reduce((acc: { [key: string]: Array