{normalizedAuthors.map((a, i) => {
const supers =
shouldShowAffiliationSupers &&
Array.isArray(a.affiliationIndices) &&
a.affiliationIndices.length ? (
{a.affiliationIndices.join(",")}
) : null;
return (
<>
{a.url ? {a.name} : a.name}
{supers}
{i < normalizedAuthors.length - 1 &&
, }
>
);
})}