Skip to content
This repository has been archived by the owner on Feb 25, 2024. It is now read-only.

Commit

Permalink
Add changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkpiano committed Jan 9, 2022
1 parent 63273c6 commit fecdc01
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .changeset/stupid-cherries-talk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
'xstate-viz-app': patch
---

Self-transitions on the machine will no longer cause graph layout to fail:

```js
import { createMachine } from 'xstate';

const machine = createMachine({
on: {
// These will now display as expected
LOAD: {},
UPDATE: {},
},
states: {
something: {},
},
});
```

0 comments on commit fecdc01

Please sign in to comment.