From d388255e6672d9a0ff74c672ec143912ac27047a Mon Sep 17 00:00:00 2001 From: Dotta Date: Tue, 10 Mar 2026 17:05:47 -0500 Subject: [PATCH] Remove inbox New tab badge count --- ui/src/pages/Inbox.tsx | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) 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" }, ]}