Update category count formatting

This commit is contained in:
Steve Paul
2024-11-22 15:55:24 +05:30
parent a07d1c7b20
commit 9c0bb5ac51
+1 -1
View File
@@ -43,7 +43,7 @@ export default function CategoryNavItem(props) {
isActive ? "is-active" : ""
}`}
dangerouslySetInnerHTML={{
__html: `${title} - ${getCategoryCount()}`,
__html: `${title} (${getCategoryCount()})`,
}}
></button>
);