From 5dd0a182217c1c4d5c2c346f53d53c6a0d526134 Mon Sep 17 00:00:00 2001 From: saravanakumardb1 Date: Sun, 19 Apr 2026 00:56:12 -0700 Subject: [PATCH] fix(web): add Agent Inbox + Day Planner links to Dashboard navbar with feature flag gates --- web/src/components/Dashboard.tsx | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/web/src/components/Dashboard.tsx b/web/src/components/Dashboard.tsx index 55c3930..ff8069e 100644 --- a/web/src/components/Dashboard.tsx +++ b/web/src/components/Dashboard.tsx @@ -11,7 +11,7 @@ import { CreateTimerModal } from './CreateTimerModal'; import { AlarmOverlay } from './AlarmOverlay'; import { requestNotificationPermission } from '@/lib/notifications'; import { formatTime, formatDate } from '@/lib/format'; -import { Plus, Clock, Bell, Keyboard, Sun, Moon, Settings, Eye, BarChart3, ListChecks, Cloud, CloudOff, Loader2 } from 'lucide-react'; +import { Plus, Clock, Bell, Keyboard, Sun, Moon, Settings, Eye, BarChart3, ListChecks, Cloud, CloudOff, Loader2, Bot, CalendarDays } from 'lucide-react'; import { useSync } from '@/lib/use-sync'; import { isEnabled as isFlagEnabled } from '@/lib/feature-flags'; import { BUILT_IN_CATEGORIES, matchesCategory } from '@/lib/categories'; @@ -185,6 +185,28 @@ export function Dashboard() { ) : null} + {isFlagEnabled('agent_inbox.enabled') ? ( + + + + ) : null} + {isFlagEnabled('day_planner.enabled') ? ( + + + + ) : null}