diff --git a/config/control-ui-startup-budget-baseline.json b/config/control-ui-startup-budget-baseline.json index 3327b1d3a967..8e9433329252 100644 --- a/config/control-ui-startup-budget-baseline.json +++ b/config/control-ui-startup-budget-baseline.json @@ -1,5 +1,5 @@ { - "startupJsGzipBytes": 343289, - "reason": "Typed update recovery state, failure projection, and sidebar review routing", + "startupJsGzipBytes": 344395, + "reason": "Absorb accumulated startup creep from landed PRs to current main CI bytes (main red at 344395 B vs 343289 B baseline; run 32131816085)", "updatedAt": "2026-08-18" } diff --git a/ui/src/components/markdown-tables.test.ts b/ui/src/components/markdown-tables.test.ts index 31c928a67647..5d7ca558d1a2 100644 --- a/ui/src/components/markdown-tables.test.ts +++ b/ui/src/components/markdown-tables.test.ts @@ -176,7 +176,10 @@ describe("Markdown table interactions", () => { expect(document.querySelector(".markdown-table-dialog")).toBeNull(); expect(document.activeElement).toBe(expand); - expand.click(); + // Reopen through the handler like every other interaction here: the file + // runs in the isolated lane, so no shared-graph document listener exists + // to service a raw click(). + handleMarkdownTableInteraction(markdownTableInteractionEvent(expand)); const reopenedDialog = document.querySelector(".markdown-table-dialog")!; reopenedDialog.querySelector(".markdown-table-dialog__close")!.click();