diff --git a/src/components/profile/ProfileCard.tsx b/src/components/profile/ProfileCard.tsx index ab07b49..c2d9fbd 100644 --- a/src/components/profile/ProfileCard.tsx +++ b/src/components/profile/ProfileCard.tsx @@ -271,8 +271,14 @@ export function ProfileCard({
Expertise:
+ {/* Separate long text entries from short tag entries */} + {expertise.filter(tag => tag.length > 60).length > 0 && ( ++ {expertise.filter(tag => tag.length > 60).join(' ')} +
+ )}