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.

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

* **Bug Fixes**
* Enhanced 24-hour checkerboard visualization tooltips to display
complete data values and totals alongside percentage information.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
Scott Gress
2026-04-30 12:27:21 -05:00
committed by GitHub
parent 13cec63bd1
commit 56a8bc03a8
@@ -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()),