diff --git a/src/components/breadcrumb/breadcrumb.tsx b/src/components/breadcrumb/breadcrumb.tsx index b0f8427c..7d1fe8ba 100644 --- a/src/components/breadcrumb/breadcrumb.tsx +++ b/src/components/breadcrumb/breadcrumb.tsx @@ -28,7 +28,8 @@ export const BreadCrumb: FC = ({ items, defaultActiveIndex = 0, return ( {items.map(({ onClick, text }, index) => { - if (index > active) return null + // Why is this line here and why is it causing a problem now? + // if (index > active) return null return (