From e3265f03e2f6cf402195c42223c45b492820b343 Mon Sep 17 00:00:00 2001 From: Elijah Date: Sun, 12 Jul 2026 12:01:31 -0700 Subject: [PATCH] Remove activity summary stats from banner --- src/components/activity/ActivityBanner.tsx | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/components/activity/ActivityBanner.tsx b/src/components/activity/ActivityBanner.tsx index 0bcaf0a..eea45cf 100644 --- a/src/components/activity/ActivityBanner.tsx +++ b/src/components/activity/ActivityBanner.tsx @@ -13,9 +13,6 @@ interface DailyActivity { interface ActivitySummary { days: DailyActivity[]; today: string; - activeDays: number; - flashcards: number; - questions: number; currentStreak: number; } @@ -65,11 +62,6 @@ export function ActivityBanner({ onNewClass }: { onNewClass: () => void }) {
-
- - - -
@@ -182,10 +174,6 @@ function StreakDisplay({ streak }: { streak: number }) { ); } -function SummaryStat({ value, label }: { value: number; label: string }) { - return
{value}
{label}
; -} - function getMonthLabel(week: DailyActivity[], previousWeek?: DailyActivity[]) { const firstOfMonth = week.find((day) => Number(day.date.slice(8, 10)) <= 7); if (!firstOfMonth) return "";