From 56a8bc03a86040fbc033213d9a481d3dcc8f0677 Mon Sep 17 00:00:00 2001 From: Scott Gress Date: Thu, 30 Apr 2026 10:27:21 -0700 Subject: [PATCH] Fix lint issue in checkerboard viz (#44510) Fixes a lint issue in (currently unused) code for the 24-hr checkerboard, that was causing one of our build tests to fail. ## Summary by CodeRabbit * **Bug Fixes** * Enhanced 24-hour checkerboard visualization tooltips to display complete data values and totals alongside percentage information. --- .../pages/DashboardPage/cards/ChartCard/CheckerboardViz.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/pages/DashboardPage/cards/ChartCard/CheckerboardViz.tsx b/frontend/pages/DashboardPage/cards/ChartCard/CheckerboardViz.tsx index 27661230a4..7f886730f6 100644 --- a/frontend/pages/DashboardPage/cards/ChartCard/CheckerboardViz.tsx +++ b/frontend/pages/DashboardPage/cards/ChartCard/CheckerboardViz.tsx @@ -99,6 +99,8 @@ const CheckerboardViz = ({ return { dayIndex: 0, hourRow: i, + value: point.value, + total: point.total, percentage: point.percentage, dayLabel: format(date, "MMM d"), hourLabel: formatHourLabel(date.getHours()),