From 24fa01dd2598a5e0a8af00d51569e8ce1537b266 Mon Sep 17 00:00:00 2001 From: Usman Baig Date: Sat, 21 Mar 2026 22:30:50 +0100 Subject: [PATCH] fix: reduce funnel segment thickness (0.44 -> 0.3) --- components/ui/funnel-chart.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/ui/funnel-chart.tsx b/components/ui/funnel-chart.tsx index 78359da..7e926ac 100644 --- a/components/ui/funnel-chart.tsx +++ b/components/ui/funnel-chart.tsx @@ -145,8 +145,8 @@ function hSegmentPath( straight = false ) { const my = H / 2; - const h0 = normStart * H * 0.44 * layerScale; - const h1 = normEnd * H * 0.44 * layerScale; + const h0 = normStart * H * 0.3 * layerScale; + const h1 = normEnd * H * 0.3 * layerScale; if (straight) { return `M 0 ${my - h0} L ${segW} ${my - h1} L ${segW} ${my + h1} L 0 ${my + h0} Z`;