()
| 230 | const changedData: Partial<Data> = {}; |
| 231 | |
| 232 | function rollback() { |
| 233 | const undoInput = pickBeforeFromChanges(changes); |
| 234 | store.update(id, undoInput); |
| 235 | } |
| 236 | |
| 237 | runInAction(() => { |
| 238 | changedKeys.forEach((keyToUpdate) => { |
nothing calls this directly
no test coverage detected