diff --git a/docs/src/app/page.tsx b/docs/src/app/page.tsx index 971a419..9a4add8 100644 --- a/docs/src/app/page.tsx +++ b/docs/src/app/page.tsx @@ -2,6 +2,7 @@ import { useMDXComponents } from "@/mdx-components"; import { Heading, NextraMetadata } from "nextra"; import Home from "./components/pages/home"; +/* eslint-disable-next-line */ const Wrapper = useMDXComponents({}).wrapper; const toc: Heading[] = []; @@ -14,7 +15,7 @@ export const metadata: NextraMetadata = { export default function Page() { return ( - // @ts-ignore + // @ts-expect-error This component passes all extra props to the underlying component, but that possibility does not exist in the type declarations. A comment there indicates that passing extra props is intended functionality.