From b2eba89bdceab34fd43495a2941549d9d7fb8d12 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Thu, 27 Nov 2025 22:21:44 +0000 Subject: [PATCH] Format --- frontend/sync-client/src/persistence/database.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/sync-client/src/persistence/database.ts b/frontend/sync-client/src/persistence/database.ts index dd519659..658596ef 100644 --- a/frontend/sync-client/src/persistence/database.ts +++ b/frontend/sync-client/src/persistence/database.ts @@ -75,9 +75,9 @@ export class Database { Math.max(0, lastSeenUpdateId ?? 0) // the first updateId will be 1 which is the first integer after -1 ); - this.documents.forEach((doc) => - this.lastSeenUpdateIds.add(doc.metadata?.parentVersionId) - ); + this.documents.forEach((doc) => { + this.lastSeenUpdateIds.add(doc.metadata?.parentVersionId); + }); this.hasInitialSyncCompleted = initialState.hasInitialSyncCompleted ?? false;