auto-git:

[change] src/serialization/local-draft-storage.ts
This commit is contained in:
2026-05-01 18:49:08 +02:00
parent 1631863558
commit a7e68ec759

View File

@@ -131,7 +131,7 @@ function parseViewportPanelId(value: unknown): ViewportPanelId | null {
return typeof value === "string" && (VIEWPORT_PANEL_IDS as readonly string[]).includes(value) ? (value as ViewportPanelId) : null;
}
function parseViewportLayoutState(value: unknown): ViewportLayoutState | null {
export function parseViewportLayoutState(value: unknown): ViewportLayoutState | null {
if (!isRecord(value)) {
return null;
}