Commit
·
23865ed
1
Parent(s):
70e222c
lets show all actually
Browse files
src/components/OrganizationCard.tsx
CHANGED
@@ -25,7 +25,7 @@ const OrganizationCard: React.FC<OrganizationCardProps> = ({
|
|
25 |
{/* Multi-author avatars and names */}
|
26 |
{provider.authorsData && provider.authorsData.length > 1 ? (
|
27 |
<div className="flex items-center gap-2 flex-wrap justify-center">
|
28 |
-
{provider.authorsData.
|
29 |
<React.Fragment key={authorData.author}>
|
30 |
{index > 0 && (
|
31 |
<span className="text-muted-foreground text-sm font-medium mx-1">+</span>
|
|
|
25 |
{/* Multi-author avatars and names */}
|
26 |
{provider.authorsData && provider.authorsData.length > 1 ? (
|
27 |
<div className="flex items-center gap-2 flex-wrap justify-center">
|
28 |
+
{provider.authorsData.map((authorData, index) => (
|
29 |
<React.Fragment key={authorData.author}>
|
30 |
{index > 0 && (
|
31 |
<span className="text-muted-foreground text-sm font-medium mx-1">+</span>
|