docs: added restock notification guide (#10413)

* docs: added restock notification guide

* changes

* lint fixes

* fixes

* more changes

* remove get email step

* add og image

* update sendRestockNotificationsWorkflow

* updates

* fix links
This commit is contained in:
Shahed Nasser
2024-12-10 16:50:40 +02:00
committed by GitHub
parent 4b384eaf05
commit e41ab50f59
12 changed files with 1554 additions and 406 deletions

View File

@@ -17,8 +17,8 @@ export const WorkflowDiagramCanvasDepth = ({
return (
<div className="flex items-start">
<div className="flex flex-col justify-center gap-y-docs_0.5">
{cluster.map((step) => (
<WorkflowDiagramStepNode key={step.name} step={step} />
{cluster.map((step, index) => (
<WorkflowDiagramStepNode key={`${step.name}-${index}`} step={step} />
))}
</div>
<WorkflowDiagramLine step={next} />

View File

@@ -17,8 +17,8 @@ export const WorkflowDiagramDepth = ({
return (
<div className="flex items-start">
<div className="flex flex-col justify-center gap-y-docs_0.5">
{cluster.map((step) => (
<WorkflowDiagramStepNode key={step.name} step={step} />
{cluster.map((step, index) => (
<WorkflowDiagramStepNode key={`${step.name}-${index}`} step={step} />
))}
</div>
<WorkflowDiagramLine step={next} />

View File

@@ -17,8 +17,8 @@ export const WorkflowDiagramListDepth = ({
<div className="flex items-start">
<WorkflowDiagramLine step={cluster} />
<div className="flex flex-col justify-center gap-y-docs_0.5">
{cluster.map((step) => (
<WorkflowDiagramStepNode key={step.name} step={step} />
{cluster.map((step, index) => (
<WorkflowDiagramStepNode key={`${step.name}-${index}`} step={step} />
))}
</div>
</div>