Skip to content

Commit

Permalink
add key to list
Browse files Browse the repository at this point in the history
  • Loading branch information
kne42 committed Nov 30, 2023
1 parent 24e646f commit 2fae01b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ export function IndexContributors() {
</h3>
<ul className="grid grid-flow-col grid-rows-[repeat(7,_minmax(0,_1fr))] grid-cols-4 gap-y-sds-xxs gap-x-sds-xl">
{contributors.map((name) => (
<li className="text-sds-body-xs leading-sds-body-xs">{name}</li>
<li key={name} className="text-sds-body-xs leading-sds-body-xs">
{name}
</li>
))}
</ul>
</div>
Expand Down

0 comments on commit 2fae01b

Please sign in to comment.