Skip to content

Commit

Permalink
Set proper name for the steps in the schedule-task page (#9716)
Browse files Browse the repository at this point in the history
Change `step` to `steps` for the batch workflows.
  • Loading branch information
webgodo authored Nov 21, 2024
1 parent 25d1dfd commit 9e5e4c9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 9e5e4c9

Please sign in to comment.