Loading: {
invoke: {
input: {},
onDone: [
{
target: "Loading",
guard: {
type: "notDone",
},
},
{
target: "Done",
},
],
onError: {
target: "Failure",
},
src: "checkProgress",
},
I have tried this but it doesnt seem to work:
Loading: {
invoke: {
input: {},
onDone: [
{
after: {
1000: "Loading"
}
guard: {
type: "notDone",
},
},
{
target: "Done",
},
],
onError: {
target: "Failure",
},
src: "checkProgress",
},