Skip to content

Commit db3984f

Browse files
chore: fix getBreadrumbs typo (#7627)
1 parent bfae1a9 commit db3984f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/site/components/withBreadcrumbs.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const WithBreadcrumbs: FC<WithBreadcrumbsProps> = ({ navKeys = [] }) => {
2222

2323
const maxLength = isMobileScreen ? 2 : 4;
2424

25-
const getBreadrumbs = () => {
25+
const getBreadcrumbs = () => {
2626
const navigationTree = getSideNavigation(navKeys);
2727

2828
const pathList = pathname
@@ -62,7 +62,7 @@ const WithBreadcrumbs: FC<WithBreadcrumbsProps> = ({ navKeys = [] }) => {
6262

6363
return (
6464
<Breadcrumbs
65-
links={getBreadrumbs()}
65+
links={getBreadcrumbs()}
6666
maxLength={maxLength}
6767
as={Link}
6868
homeLinkAriaLabel={t('components.common.breadcrumbs.navigateToHome')}

0 commit comments

Comments
 (0)