From 9c0bb5ac5179a831e34be801eedb873f79baa3b0 Mon Sep 17 00:00:00 2001 From: Steve Paul Date: Tue, 19 Nov 2024 23:58:43 +0530 Subject: [PATCH] Update category count formatting --- src/components/CategoryNavItem.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/CategoryNavItem.jsx b/src/components/CategoryNavItem.jsx index dab0fea..12ede6a 100644 --- a/src/components/CategoryNavItem.jsx +++ b/src/components/CategoryNavItem.jsx @@ -43,7 +43,7 @@ export default function CategoryNavItem(props) { isActive ? "is-active" : "" }`} dangerouslySetInnerHTML={{ - __html: `${title} - ${getCategoryCount()}`, + __html: `${title} (${getCategoryCount()})`, }} > );