- {cluster.map((step) => (
-
+ {cluster.map((step, index) => (
+
))}
diff --git a/www/packages/docs-ui/src/components/WorkflowDiagram/Common/Depth/index.tsx b/www/packages/docs-ui/src/components/WorkflowDiagram/Common/Depth/index.tsx
index b0839afacf..ff6ead1e8d 100644
--- a/www/packages/docs-ui/src/components/WorkflowDiagram/Common/Depth/index.tsx
+++ b/www/packages/docs-ui/src/components/WorkflowDiagram/Common/Depth/index.tsx
@@ -17,8 +17,8 @@ export const WorkflowDiagramDepth = ({
return (
- {cluster.map((step) => (
-
+ {cluster.map((step, index) => (
+
))}
diff --git a/www/packages/docs-ui/src/components/WorkflowDiagram/List/Depth/index.tsx b/www/packages/docs-ui/src/components/WorkflowDiagram/List/Depth/index.tsx
index 3c2ff0e66b..eff1356a86 100644
--- a/www/packages/docs-ui/src/components/WorkflowDiagram/List/Depth/index.tsx
+++ b/www/packages/docs-ui/src/components/WorkflowDiagram/List/Depth/index.tsx
@@ -17,8 +17,8 @@ export const WorkflowDiagramListDepth = ({
- {cluster.map((step) => (
-
+ {cluster.map((step, index) => (
+
))}