We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63bd492 commit 0263f89Copy full SHA for 0263f89
1 file changed
app/paths/[slug]/page.tsx
@@ -29,7 +29,11 @@ export default function PathDetailPage({
29
</div>
30
<div className="space-y-4">
31
{path.steps.map((step, index) => (
32
- <PathStep key={`${path.href}-${step.name}`} step={step} index={index} />
+ <PathStep
33
+ key={`${path.href}-${step.name}`}
34
+ step={step}
35
+ index={index}
36
+ />
37
))}
38
39
0 commit comments