diff --git a/apps/app/components/workspace/activity-graph.tsx b/apps/app/components/workspace/activity-graph.tsx index f3144f7a1..d63d2e4d3 100644 --- a/apps/app/components/workspace/activity-graph.tsx +++ b/apps/app/components/workspace/activity-graph.tsx @@ -101,12 +101,12 @@ export const ActivityGraph: React.FC = ({ activities }) => { style={{ gridTemplateRows: "repeat(7, minmax(0, 1fr))" }} ref={ref} > - {recentDates.map((date) => { + {recentDates.map((date, index) => { const isActive = activities?.find((a) => a.created_date === date); return (