mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
fix(client): correct static key usage in catalog.tsx (#62099)
This commit is contained in:
@@ -33,8 +33,8 @@ const CatalogPage = () => {
|
||||
<div className='catalog-item-top'>
|
||||
<h2>{title}</h2>
|
||||
<hr />
|
||||
{summary.map(text => (
|
||||
<p key='text'>{text}</p>
|
||||
{summary.map((text, i) => (
|
||||
<p key={i}>{text}</p>
|
||||
))}
|
||||
</div>
|
||||
<div className='catalog-item-bottom'>
|
||||
|
||||
Reference in New Issue
Block a user