diff --git a/utils/crdt/LWWRegister.ts b/utils/crdt/LWWRegister.ts index 500ed19..549601f 100644 --- a/utils/crdt/LWWRegister.ts +++ b/utils/crdt/LWWRegister.ts @@ -17,7 +17,7 @@ export class LWWRegister { const [remoteTimestamp] = state; const [localTimestamp] = this.state; - if (localTimestamp >= remoteTimestamp) { + if (localTimestamp > remoteTimestamp) { return; }