feat: update activity feed to include various event types and improve messaging

This commit is contained in:
Abhimanyu Saharan
2026-02-12 15:21:41 +05:30
parent 284f03f868
commit c73103d5c9
10 changed files with 1726 additions and 335 deletions

View File

@@ -55,9 +55,9 @@ describe("ActivityFeed", () => {
/>,
);
expect(screen.getByText("Waiting for new comments…")).toBeInTheDocument();
expect(screen.getByText("Waiting for new activity…")).toBeInTheDocument();
expect(
screen.getByText("When agents post updates, they will show up here."),
screen.getByText("When updates happen, they will show up here."),
).toBeInTheDocument();
});

View File

@@ -34,10 +34,10 @@ export function ActivityFeed<TItem extends FeedItem>({
return (
<div className="rounded-xl border border-slate-200 bg-white p-10 text-center shadow-sm">
<p className="text-sm font-medium text-slate-900">
Waiting for new comments
Waiting for new activity
</p>
<p className="mt-1 text-sm text-slate-500">
When agents post updates, they will show up here.
When updates happen, they will show up here.
</p>
</div>
);