Update page.tsx

This commit is contained in:
CanbiZ 2025-01-23 11:26:07 +01:00
parent 86ac765d80
commit a025fd948e

View File

@ -86,7 +86,7 @@ const CategoryView = () => {
</div> </div>
<h3 className="text-lg font-bold mb-1">{category.name}</h3> <h3 className="text-lg font-bold mb-1">{category.name}</h3>
<p className="text-sm text-gray-500 text-center"> <p className="text-sm text-gray-500 text-center">
{category.description || "No description available."} {(category as any).description || "No description available."}
</p> </p>
</CardContent> </CardContent>
</Card> </Card>