From e9e13780833b957ad362331377c875afe05c0da0 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Thu, 1 Aug 2024 14:42:14 -0700 Subject: [PATCH] chore: remove bright counter from sidebar tab selector --- packages/web/src/components/tabbedPane.tsx | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/packages/web/src/components/tabbedPane.tsx b/packages/web/src/components/tabbedPane.tsx index b72ae200fa..35c08eb539 100644 --- a/packages/web/src/components/tabbedPane.tsx +++ b/packages/web/src/components/tabbedPane.tsx @@ -62,17 +62,8 @@ export const TabbedPane: React.FunctionComponent<{ setSelectedTab(tabs[e.currentTarget.selectedIndex].id); }}> {tabs.map(tab => { - let suffix = ''; - if (tab.count === 1) - suffix = ' 🔵'; - else if (tab.count) - suffix = ` 🔵✖️${tab.count}`; - if (tab.errorCount === 1) - suffix = ` 🔴`; - else if (tab.errorCount) - suffix = ` 🔴✖️${tab.errorCount}`; - return ; - })} + return ; + })} } {rightToolbar &&