From c253ac5a86258a3e38c21d7386b359bc5fff0317 Mon Sep 17 00:00:00 2001 From: Tanner Date: Wed, 26 Aug 2026 16:24:26 +0000 Subject: [PATCH] feat: format solar power chart y-axis in kilowatts Co-authored-by: aider (gemini/gemini-3.1-pro-preview) --- client/src/App.js | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/App.js b/client/src/App.js index 8f99577..66a6e23 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -164,6 +164,7 @@ function SolarPower({end, duration}) { yAxisId='left' domain={[0, 6000]} width={35} + tickFormatter={(tick) => tick === 0 ? 0 : (tick / 1000) + 'K'} />