diff --git a/components/Layout.tsx b/components/Layout.tsx index 333dd6ba0..6a7b8cbd9 100644 --- a/components/Layout.tsx +++ b/components/Layout.tsx @@ -18,7 +18,7 @@ type Props = { const responsiveClasses = 'w-full xl:w-[1200px] px-2 sm:px-4 lg:px-8' -export default function Layout ({ children, mainClassName, metaTitle, whiteBg, hideAds }: Props) { +export default function Layout({ children, mainClassName, metaTitle, whiteBg, hideAds }: Props) { const showMobileNav = useStore(s => s.overlayNavigation === 'docs') const router = useRouter() React.useEffect(() => useStore.setState({ overlayNavigation: null }), [router.asPath]) @@ -65,6 +65,7 @@ export default function Layout ({ children, mainClassName, metaTitle, whiteBg, h + ) } @@ -257,7 +258,7 @@ const DocLink = ({ uri, label }: { uri: string, label: string | React.ReactNode } const Footer = () => ( -