Patch Changes
-
#4308
af032db12
Thanks @davidkpiano! - Traversing state machines that have delayed transitions will now work as expected:const machine = createMachine({ initial: 'a', states: { a: { after: { 1000: 'b' } }, b: {} } }); const paths = getShortestPaths(machine); // works