Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
hotfix(COR-1921): Fixed missing comma for last json link (#4997)
Browse files Browse the repository at this point in the history
  • Loading branch information
VWSCoronaDashboard30 authored Mar 4, 2024
1 parent 34d949d commit c6b82f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ function MetadataItem({ icon, label, items, referenceLink, accessibilityText, ac
{`${label}: `}
{items.map((item, index) => (
<Fragment key={index + item.href}>
{index > 0 && (index !== items.length - 1 ? ', ' : '')}
{index > 0 && index !== items.length && ', '}
{item.href && (
<ExternalLink
href={item.href}
Expand Down

0 comments on commit c6b82f6

Please sign in to comment.