You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Matching state and invoke names would cause `xstate-component-tree` to fail to return child components in some cases because internally it named them the same thing and stomped all over itself.
6
+
7
+
```
8
+
states : {
9
+
foo : {
10
+
invoke : {
11
+
id : "foo",
12
+
// ...
13
+
},
14
+
},
15
+
},
16
+
```
17
+
18
+
This should work now.
19
+
20
+
**BREAKING CHANGE**: All `machine` values in the output that previously looked like `root.foo` will now look like `root.#foo`, in order to help differentiate the child machine `id` from the parent state path.
0 commit comments