diff --git a/ui/src/pages/Inbox.tsx b/ui/src/pages/Inbox.tsx index 990f30ca..cc77e0f0 100644 --- a/ui/src/pages/Inbox.tsx +++ b/ui/src/pages/Inbox.tsx @@ -539,12 +539,6 @@ export function Inbox() { const hasJoinRequests = joinRequests.length > 0; const hasTouchedIssues = touchedIssues.length > 0; - const newItemCount = - failedRuns.length + - staleIssues.length + - (showAggregateAgentError ? 1 : 0) + - (showBudgetAlert ? 1 : 0); - const showJoinRequestsCategory = allCategoryFilter === "everything" || allCategoryFilter === "join_requests"; const showTouchedCategory = @@ -595,16 +589,7 @@ export function Inbox() { items={[ { value: "new", - label: ( - <> - New - {newItemCount > 0 && ( - - {newItemCount} - - )} - - ), + label: "New", }, { value: "all", label: "All" }, ]}