diff --git a/src/components/workflow/workflow.service.ts b/src/components/workflow/workflow.service.ts index bf594fbaaa..35a8ea55e7 100644 --- a/src/components/workflow/workflow.service.ts +++ b/src/components/workflow/workflow.service.ts @@ -121,7 +121,7 @@ export const findTransition = ( ) => { const transition = transitions.find((t) => t.key === needle); if (!transition) { - throw new UnauthorizedException('This transition is not available'); + throw new UnauthorizedException('This transition does not exist.'); } return transition; };