Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 257 Bytes

young-chefs-prove.md

File metadata and controls

10 lines (8 loc) · 257 Bytes
@xstate/fsm
major

The .send(...) method on interpreter.send(...) now requires the first argument (the event to send) to be an object, e.g. { type: 'someEvent' }.

-actor.send('SOME_EVENT')
+actor.send({ type: 'SOME_EVENT' })