From b7561594d20c9d47bd5f005aae02b52b445967ff Mon Sep 17 00:00:00 2001 From: Virginia Czosek Date: Tue, 17 Mar 2026 08:43:52 -0700 Subject: [PATCH] Use Link component in breadcrumbs --- src/components/Breadcrumb/breadcrumb.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/Breadcrumb/breadcrumb.tsx b/src/components/Breadcrumb/breadcrumb.tsx index d005c17c02..0422cd4060 100644 --- a/src/components/Breadcrumb/breadcrumb.tsx +++ b/src/components/Breadcrumb/breadcrumb.tsx @@ -1,6 +1,7 @@ import classnames from 'classnames'; import type { HTMLAttributes } from 'react'; import { Fragment, JSX } from 'react'; +import Link from '../Link/link'; import './breadcrumb.scss'; export interface BreadcrumbCrumb { @@ -40,9 +41,9 @@ export const Breadcrumb = ({ {` ${crumb.label} `} ) : ( - + {` ${crumb.label} `} - + )} ))}