We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
getBreadrumbs
1 parent bfae1a9 commit db3984fCopy full SHA for db3984f
apps/site/components/withBreadcrumbs.tsx
@@ -22,7 +22,7 @@ const WithBreadcrumbs: FC<WithBreadcrumbsProps> = ({ navKeys = [] }) => {
22
23
const maxLength = isMobileScreen ? 2 : 4;
24
25
- const getBreadrumbs = () => {
+ const getBreadcrumbs = () => {
26
const navigationTree = getSideNavigation(navKeys);
27
28
const pathList = pathname
@@ -62,7 +62,7 @@ const WithBreadcrumbs: FC<WithBreadcrumbsProps> = ({ navKeys = [] }) => {
62
63
return (
64
<Breadcrumbs
65
- links={getBreadrumbs()}
+ links={getBreadcrumbs()}
66
maxLength={maxLength}
67
as={Link}
68
homeLinkAriaLabel={t('components.common.breadcrumbs.navigateToHome')}
0 commit comments