Максим Иванов

Results 277 comments of Максим Иванов

However, this is a bug and I need to reproduce it.

@xmlking well I was able to reproduce the error ![image](https://user-images.githubusercontent.com/12021443/55749474-acd0fa80-5a49-11e9-8c1c-89fabcf12703.png)

Fixed ![image](https://user-images.githubusercontent.com/12021443/55760845-08a97c80-5a66-11e9-8c75-f5ea690b3abb.png)

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:...