Fix typo in ThemeCard component

This commit is contained in:
Mauro Balades
2024-08-26 14:21:20 +02:00
parent 2f3523f9d5
commit 10b764aa7f

View File

@@ -42,6 +42,6 @@ export default function ThemeCard({
{theme.description.substring(0, maxDescLen).trim() +
(theme.description.length > maxDescLen ? "..." : "")}
</p>
</ThemeCardWrapepr>
</ThemeCardWrapper>
);
}