We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1437cc commit eac80c6Copy full SHA for eac80c6
1 file changed
apps/docs/app/docs/[[...slug]]/page.tsx
@@ -17,8 +17,8 @@ export default async function Page(props: PageProps<"/docs/[[...slug]]">) {
17
notFound();
18
}
19
20
- // @ts-expect-error PageData type from fumadocs-core doesn't fully reflect the MDX output, but these properties exist at runtime
21
- const { body: MDX, toc } = page.data;
+ // biome-ignore lint/suspicious/noExplicitAny: <>
+ const { body: MDX, toc } = page.data as any;
22
23
return (
24
<DocsPage toc={toc}>
0 commit comments