We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c844732 commit 6b03d4fCopy full SHA for 6b03d4f
src/pages/learn/[track]/index.tsx
@@ -36,7 +36,7 @@ export default function Index(props: Props) {
36
<small>{props.track.lessons.length} lessons</small>
37
<ul>
38
{props.track.lessons.map((i) => {
39
- return <li>{i.name}</li>
+ return <li key={i.id}>{i.name}</li>
40
})}
41
</ul>
42
0 commit comments