diff --git a/.github/scripts/backend-memory-report.mjs b/.github/scripts/backend-memory-report.mjs index a04ee187a5..6ea8a5b5af 100644 --- a/.github/scripts/backend-memory-report.mjs +++ b/.github/scripts/backend-memory-report.mjs @@ -443,12 +443,10 @@ function renderJsFootprintSection(base, head) { '', renderJsFootprintMetricTable(base, head), '', - '#### Load Phase Breakdown', - '', - renderJsFootprintPhaseTable(base, head), - '', - '', - '', + //'#### Load Phase Breakdown', + //'', + //renderJsFootprintPhaseTable(base, head), + //'', ]; for (const block of [ @@ -461,6 +459,9 @@ function renderJsFootprintSection(base, head) { lines.push(''); } + lines.push(''); + lines.push(''); + return lines.join('\n'); }