File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import Link from "./Link"
5
5
import { isLang , supportedLanguages } from "../utils/languages"
6
6
import { isTranslationKey , translateMessageId } from "../utils/translations"
7
7
import { Box , UnorderedList , ListItem } from "@chakra-ui/react"
8
- import ButtonLink from "./ButtonLink"
9
8
10
9
export interface IProps {
11
10
slug : string
@@ -75,7 +74,7 @@ const Breadcrumbs: React.FC<IProps> = ({
75
74
lineHeight = "140%"
76
75
letterSpacing = "wider"
77
76
>
78
- < ButtonLink
77
+ < Link
79
78
as = { Link }
80
79
to = { crumb . fullPath }
81
80
isPartiallyActive = { slug === crumb . fullPath }
@@ -85,7 +84,7 @@ const Breadcrumbs: React.FC<IProps> = ({
85
84
_active = { { color : "primary" } }
86
85
>
87
86
{ crumb . text }
88
- </ ButtonLink >
87
+ </ Link >
89
88
{ idx < crumbs . length - 1 && (
90
89
< Box as = "span" marginLeft = { 2 } color = "textTableOfContents" >
91
90
/
You can’t perform that action at this time.
0 commit comments