Skip to content

Commit d767cf9

Browse files
committed
ts fix
1 parent b0e47d5 commit d767cf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fsm.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class FSM {
1616
private fsm = interpret(
1717
createMachine('wait', {
1818
wait: state(
19-
transition('poll', 'processing'),
19+
transition('poll' as Transition, 'processing'),
2020
transition('notify', 'processing'),
2121
transition('manual', 'processing')
2222
),

0 commit comments

Comments
 (0)