handle bug where header id caused breadcrumbs to render on /docs (#185)

pull/26460/head^2
Corwin Smith 2 years ago committed by GitHub
parent 57b5b1de8d
commit e61c7e6bd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/components/UI/docs/Breadcrumbs.tsx

@ -11,7 +11,7 @@ export const Breadcrumbs: FC = () => {
return (
<>
{router.asPath !== '/docs' ? (
{router.asPath !== '/docs' && pathSplit.length > 1? (
<Breadcrumb>
{pathSplit.map((path: string, idx: number) => {
return (

Loading…
Cancel
Save