Skip to content
Prev Previous commit
Next Next commit
fix: format ActiveUserChart
  • Loading branch information
Parkreiner committed Apr 12, 2024
commit 6f69ae4e86c10eb25eb99472d8c2dbbaf8e4e6fd
2 changes: 1 addition & 1 deletion site/src/components/ActiveUserChart/ActiveUserChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ ChartJS.register(
const USER_LIMIT_DISPLAY_THRESHOLD = 60;

export interface ActiveUserChartProps {
data: readonly ({ date: string; amount: number })[];
data: readonly { date: string; amount: number }[];
interval: "day" | "week";
userLimit: number | undefined;
}
Expand Down