changes made in editor are not reflected in my local file
Expected Result:
changes made in editor are reflected in my local file
Initial Machine
export type Context = {};
export type Event = { type: 'BURN'; } | { type: 'DOUSE'; }
export const ElementalMachine = createMachine({
schema: {
context: {} as Context,
events: {} as Event,
},
tsTypes: {} as import('./elemental.machine.typegen').Typegen0,
states: {},
});
edits made in editor that are not reflected
Changing the machine name
Adding child states "fire" and "water"
Adding event BURN from "water" goes to "fire" state
Adding event DOUSE from "fire" goes to "water" state
attempts to fix
Attempted adding an initial state, incase the lack of initial state was causing a bug
export const ElementalMachine= createMachine({
schema: {
context: {} as Context,
events: {} as Event,
},
tsTypes: {} as import('./elemental.machine.typegen').Typegen0,
initial: 'water',
states: {
water: {},
},
});
No change. Still fails
My stately account didn't have a system set up. In case the vscode machines are synced with a stately account system, I added a system to my stately account. No change.
Enviroment:
Steps to reproduce:
Result:
Expected Result:
Initial Machine
edits made in editor that are not reflected
attempts to fix