From 7fbce4e8088583bceea4659ed5812037e5216e21 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Thu, 12 Mar 2026 18:55:03 -0700 Subject: [PATCH] Counts to the right --- apps/yaak-proxy/components/Sidebar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/yaak-proxy/components/Sidebar.tsx b/apps/yaak-proxy/components/Sidebar.tsx index 903b19d2..a9f58e9e 100644 --- a/apps/yaak-proxy/components/Sidebar.tsx +++ b/apps/yaak-proxy/components/Sidebar.tsx @@ -188,7 +188,7 @@ function ItemInner({ item }: { item: SidebarItem }) { return (
{item.label} - {count > 0 && {count}} + {count > 0 && {count}}
); }