diff --git a/examples/project.ts b/examples/project.ts index 2903944..375d5e7 100644 --- a/examples/project.ts +++ b/examples/project.ts @@ -35,6 +35,7 @@ const smbProject = new StateMachineBuilder< .withTransitions([ [ProjectStatus.Pending, [ProjectStatus.Active, ProjectStatus.Archived]], [ProjectStatus.Active, [ProjectStatus.Completed]], + [ProjectStatus.Archived, [ProjectStatus.Pending]], ]); async function main() {