diff --git a/app/components/Breadcrumb.tsx b/app/components/Breadcrumb.tsx index 07f156e..a3199b1 100644 --- a/app/components/Breadcrumb.tsx +++ b/app/components/Breadcrumb.tsx @@ -16,7 +16,7 @@ export default function Breadcrumb({ type, category, name }: { <> / - {capitalCase(pluralize(type))} + {capitalCase(type)} )} diff --git a/app/components/Index.tsx b/app/components/Index.tsx index 20ad186..8d0990f 100644 --- a/app/components/Index.tsx +++ b/app/components/Index.tsx @@ -4,6 +4,7 @@ import Link from 'next/link'; import { usePathname } from 'next/navigation'; import type { ReferencePage } from '../services/referenceService'; import { capitalCase } from 'change-case'; +import pluralize from 'pluralize'; export default function Index({ groupedReferences @@ -34,7 +35,7 @@ export default function Index({