We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20967f3 commit cf68905Copy full SHA for cf68905
src/components/profile/profileCard.astro
@@ -45,6 +45,7 @@ const { profile } = Astro.props;
45
<div class="px-5 flex justify-center w-full flex-wrap">
46
{
47
profile["categories"].map((role) => (
48
+ (categories[role]) && (
49
<LinkIcon
50
url={"/directorio/" + categories[role].slug}
51
img={categories[role].ico}
@@ -54,7 +55,7 @@ const { profile } = Astro.props;
54
55
size="w-6 h-6"
56
padding="p-2 mx-1"
57
/>
- ))
58
+ )))
59
}
60
</div>
61
</a>
0 commit comments