From 34c87beaaf7d4d8cf1557d4a0954c26172d27c3e Mon Sep 17 00:00:00 2001 From: Rahim Date: Fri, 13 Feb 2026 01:17:02 +1100 Subject: [PATCH] chore(ci): remove forced minimum fill on bundle size bars --- .github/workflows/bundle-size.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bundle-size.yml b/.github/workflows/bundle-size.yml index 064c8d2b..78375455 100644 --- a/.github/workflows/bundle-size.yml +++ b/.github/workflows/bundle-size.yml @@ -82,7 +82,7 @@ jobs: // Size bar: proportional block characters function sizeBar(bytes, maxBytes) { const width = 8; - const filled = Math.max(1, Math.round((bytes / maxBytes) * width)); + const filled = Math.round((bytes / maxBytes) * width); return '█'.repeat(filled) + '░'.repeat(width - filled); }