Michael Lin
Michael Lin
As mentioned in the error message, you can use the `mark` option function to mark immutable class instances. For example, ```ts class Foobar { foo = { bar: 'str', };...
hi @rynti , you can use `strict: process.env.NODE_ENV !== 'production'` to enable strict mode by default in a development build. For example, ```ts create( { count: 0 }, (draft) =>...
hi @IrvingArmenta , referring to the React documentation is a good choice. You should note that in `useMutativeReducer`, the state update logic in the reducer is 'mutative'. For example, this...