Максим Иванов
Максим Иванов
You need disabled development mode
However, this is a bug and I need to reproduce it.
@xmlking well I was able to reproduce the error 
Fixed 
@victos create issue with reproduce
I will not be able to help unless I see specific examples.
If you do not use immer, then you are not allowed to mutate the state. And that's correct behavior in NGXS. Correct immutable state without Immer ```ts @Action(Add) public add({...
In your example, you are breaking the rules for using the NGXS. ```ts @Receiver({ type: '[Child] Set Ok Status Without Immer' }) public static setOkStatusWithoutImmer({ setState }: StateContext) { setState((draft:...