From 9e5e4c9f251d8acf197b1e5385f8618c84d63254 Mon Sep 17 00:00:00 2001 From: Mohsen Date: Thu, 21 Nov 2024 17:44:57 +0330 Subject: [PATCH] Set proper name for the steps in the schedule-task page (#9716) Change `step` to `steps` for the batch workflows. --- .../customization/integrate-systems/schedule-task/page.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/apps/book/app/learn/customization/integrate-systems/schedule-task/page.mdx b/www/apps/book/app/learn/customization/integrate-systems/schedule-task/page.mdx index 58f70e5251..ba195c5cec 100644 --- a/www/apps/book/app/learn/customization/integrate-systems/schedule-task/page.mdx +++ b/www/apps/book/app/learn/customization/integrate-systems/schedule-task/page.mdx @@ -85,7 +85,7 @@ type CreateBrandsInput = { } export const createBrandsStep = createStep( - "create-brand-step", + "create-brands-step", async (input: CreateBrandsInput, { container }) => { const brandModuleService: BrandModuleService = container.resolve( BRAND_MODULE @@ -142,7 +142,7 @@ type UpdateBrandsInput = { } export const updateBrandsStep = createStep( - "update-brand-step", + "update-brands-step", async ({ brands }: UpdateBrandsInput, { container }) => { const brandModuleService: BrandModuleService = container.resolve( BRAND_MODULE