From d737f5da72eb75abfa5de7300892e3e42e056852 Mon Sep 17 00:00:00 2001 From: Junia Mannervik <72745451+JMannervik@users.noreply.github.com> Date: Thu, 11 Dec 2025 21:47:21 +0100 Subject: [PATCH] Update ts/routes/graphs/reviews.ts Co-authored-by: user1823 <92206575+user1823@users.noreply.github.com> --- ts/routes/graphs/reviews.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/routes/graphs/reviews.ts b/ts/routes/graphs/reviews.ts index df1c03759..ae33cc780 100644 --- a/ts/routes/graphs/reviews.ts +++ b/ts/routes/graphs/reviews.ts @@ -109,7 +109,7 @@ export function renderReviews( } const desiredBars = Math.min(70, Math.abs(xMin!)); const shouldCapRange = range !== GraphRange.AllTime; - const originalXMin = shouldCapRange ? xMin! : undefined; + const originalXMin = xMin!; // Create initial scale to determine tick spacing let x = scaleLinear().domain([xMin!, xMax]);