Skip to content

Commit

Permalink
Fixing Breadcrumbs textDecoration
Browse files Browse the repository at this point in the history
  • Loading branch information
corbanbrook committed Apr 11, 2024
1 parent 53f6bdb commit c67f6c0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/Breadcrumbs/Breadcrumbs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ interface BreadcrumbSegmentProps {
}

const defaultRenderLink = (path: Path, children: ReactNode) => (
<a href={path.url}>{children}</a>
<Box as="a" href={path.url} textDecoration="none">
{children}
</Box>
)

const BreadcrumbSegment = (props: BreadcrumbSegmentProps) => {
Expand Down

0 comments on commit c67f6c0

Please sign in to comment.