Is mutating an item inside of an array, like this todoStore.todos[index].setDone(true) supported?
export class TodoModel extends Model({
todos: prop<Todo[]>(() => []).withSetter(),
})
I'm finding that this isn't consistently working, especially after first adding a new Todo to the model