fix(ui): restore conflict UI budget headroom

This commit is contained in:
Peter Steinberger
2026-07-20 18:38:11 -07:00
parent e01f9d186f
commit 3dc897df0b
+5 -5
View File
@@ -12,11 +12,11 @@ const KIB = 1024;
export const CONTROL_UI_PERFORMANCE_BUDGETS = Object.freeze({
startupJsRequests: 18,
startupCssRequests: 1,
// 313 KiB accompanies the widget sandbox-origin diagnostics (2026-07): the
// startup catalog gained the operator hint strings and main sat within
// ~0.1 KiB of the previous ceiling, failing source builds whose zlib packs
// slightly worse than CI's. One KiB restores explicit headroom.
startupJsGzipBytes: 313 * KIB,
// 314 KiB accompanies cloud-workspace conflict recovery (2026-07): the live
// notice and sidebar attention must be available on initial chat render, and
// their bounded recovery copy exhausted the previous ceiling after rebasing.
// One KiB restores explicit headroom without changing the request budget.
startupJsGzipBytes: 314 * KIB,
// 45 KiB CSS ceilings maintainer-approved 2026-07 alongside the interleaved
// sidebar zone styling; headroom over the ~36.5 KiB post-diet baseline.
startupCssGzipBytes: 45 * KIB,