Skip to content

Commit 0263f89

Browse files
committed
fixing the learning paths page.
1 parent 63bd492 commit 0263f89

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

app/paths/[slug]/page.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@ export default function PathDetailPage({
2929
</div>
3030
<div className="space-y-4">
3131
{path.steps.map((step, index) => (
32-
<PathStep key={`${path.href}-${step.name}`} step={step} index={index} />
32+
<PathStep
33+
key={`${path.href}-${step.name}`}
34+
step={step}
35+
index={index}
36+
/>
3337
))}
3438
</div>
3539
</div>

0 commit comments

Comments
 (0)