From be2e875bc51ca8e15e17996928dc2315e192e818 Mon Sep 17 00:00:00 2001 From: Jakob Ackermann Date: Wed, 15 Apr 2026 10:37:41 +0200 Subject: [PATCH] [web] gracefully handle old history resyncs without origin (#32822) GitOrigin-RevId: 6e9d878234fea8bdb74534b1f23ee127e5c2daaf --- services/web/types/history/projectHistory.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/types/history/projectHistory.ts b/services/web/types/history/projectHistory.ts index 74c89b04af..94c7332362 100644 --- a/services/web/types/history/projectHistory.ts +++ b/services/web/types/history/projectHistory.ts @@ -30,7 +30,7 @@ export type SyncStartRecordSchema = { export type SyncStateSchema = { resyncProjectStructure: boolean resyncDocContents: string[] - origin: { kind: string } + origin?: { kind: string } } export type SyncStateHistoryEntry = {