We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0e47d5 commit d767cf9Copy full SHA for d767cf9
src/fsm.ts
@@ -16,7 +16,7 @@ export class FSM {
16
private fsm = interpret(
17
createMachine('wait', {
18
wait: state(
19
- transition('poll', 'processing'),
+ transition('poll' as Transition, 'processing'),
20
transition('notify', 'processing'),
21
transition('manual', 'processing')
22
),
0 commit comments