From e5498e2a177993ab9983bcc59c000c86a7f30e63 Mon Sep 17 00:00:00 2001 From: gabarhdz Date: Sun, 23 Aug 2026 00:45:35 -0600 Subject: [PATCH] no more verticla scroll in activity section --- app/dashboard/activity/page.tsx | 6 +++--- components/dashboard/activity-feed.tsx | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/dashboard/activity/page.tsx b/app/dashboard/activity/page.tsx index ba76dfc..06a0d5e 100644 --- a/app/dashboard/activity/page.tsx +++ b/app/dashboard/activity/page.tsx @@ -15,7 +15,7 @@ export default async function ActivityPage() { const events = await getRecentEvents(agent.id, 200); return ( -
+
Overview @@ -25,11 +25,11 @@ export default async function ActivityPage() { - + Activity feed - + diff --git a/components/dashboard/activity-feed.tsx b/components/dashboard/activity-feed.tsx index 13c83c6..5fa86e5 100644 --- a/components/dashboard/activity-feed.tsx +++ b/components/dashboard/activity-feed.tsx @@ -42,7 +42,7 @@ export function ActivityFeed({ events }: { events: AgentEvent[] }) { }, [events, category]); return ( -
+
- +
{filtered.length === 0 &&

No events yet.

} {filtered.map((event) => (