From 74d01c37de6e5390a471e3b77f96963f5ff59e0b Mon Sep 17 00:00:00 2001 From: Scott Wilson Date: Mon, 10 Feb 2025 19:16:55 -0800 Subject: [PATCH] fix: remove capitalize from breadcrumbs container --- frontend/src/components/v2/Breadcrumb/Breadcrumb.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/v2/Breadcrumb/Breadcrumb.tsx b/frontend/src/components/v2/Breadcrumb/Breadcrumb.tsx index d7b78c67a..0afd1bb1f 100644 --- a/frontend/src/components/v2/Breadcrumb/Breadcrumb.tsx +++ b/frontend/src/components/v2/Breadcrumb/Breadcrumb.tsx @@ -126,7 +126,7 @@ export type TBreadcrumbFormat = }; const BreadcrumbContainer = ({ breadcrumbs }: { breadcrumbs: TBreadcrumbFormat[] }) => ( -
+
{(breadcrumbs as TBreadcrumbFormat[]).map((el, index) => {