diff --git a/client/lib/store.ts b/client/lib/store.ts index 32b316c..2c5b337 100644 --- a/client/lib/store.ts +++ b/client/lib/store.ts @@ -62,9 +62,7 @@ export class Store { private updateValue(path: string): void { const value = getValueByPointer(this.cache.data, path) - if (value !== undefined) { - this.watchedNodes[path].next(value) - } + this.watchedNodes[path].next(value) } private handleRevision(revision: Revision): void {