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:
@@ -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} />
|
||||
|
||||
@@ -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} />
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user