fix: broken frontend displays after API changes

This commit is contained in:
2026-01-31 18:00:26 +00:00
parent 657bd37cdd
commit cb01de1f79
3 changed files with 19 additions and 15 deletions

View File

@@ -1,6 +1,6 @@
import { ResponsiveHeatMap } from "@nivo/heatmap";
type ApiRow = Record<string, number>;
type ApiRow = Record<number, number>;
type ActivityHeatmapProps = {
data: ApiRow[];
};