Hi, I have the following machine definition. I load the following snapshot in an actor and start it. Everything works as expected, except that the guardrails function for the always connection for "Payment Requirement": "Start", is never run. Any idea what might be wrong or how I could debug this?
const actor = createActor(this.machine, {
snapshot: {
"status": "active",
"output": null,
"error": null,
"value": {
"Data Preparation": {
"Intake": {
"LawLift": "Received",
"Passports": "Received",
"Payment Requirement": "Start"
}
}
},
"historyValue": {},
"context": {},
"children": {}
}
});
actor.start();