diff --git a/plugins/scaffolder-backend/src/service/router.ts b/plugins/scaffolder-backend/src/service/router.ts index 5adfee275e..3d10bbd101 100644 --- a/plugins/scaffolder-backend/src/service/router.ts +++ b/plugins/scaffolder-backend/src/service/router.ts @@ -259,7 +259,7 @@ export async function createRouter( const { taskId } = req.params; const task = await taskBroker.get(taskId); if (!task) { - throw new NotFoundError(`task with id ${taskId} does not exist`); + throw new NotFoundError(`Task with id ${taskId} does not exist`); } res.status(200).json(task); })