Skip to content

Commit 39847fa

Browse files
authored
fix(ci): use ## instead of # when comparing
Signed-off-by: Aviv Keller <me@aviv.sh>
1 parent 5a52702 commit 39847fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/site/scripts/compare-size/index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ function reportDiff({ assets: oldAssets }, { assets: newAssets }) {
8282
const totalDelta = newTotal - oldTotal;
8383

8484
// Summary table
85-
let report = `# 📦 Build Size Comparison\n\n## Summary\n\n| Metric | Value |\n|--------|-------|\n`;
85+
let report = `## 📦 Build Size Comparison\n\n## Summary\n\n| Metric | Value |\n|--------|-------|\n`;
8686
report += `| Old Total Size | ${formatBytes(oldTotal)} |\n`;
8787
report += `| New Total Size | ${formatBytes(newTotal)} |\n`;
8888
report += `| Delta | ${formatBytes(totalDelta)} (${formatPercent(

0 commit comments

Comments
 (0)