Skip to content

Commit eac80c6

Browse files
committed
chore(docs): updated page file in docs dir
1 parent d1437cc commit eac80c6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/docs/app/docs/[[...slug]]/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ export default async function Page(props: PageProps<"/docs/[[...slug]]">) {
1717
notFound();
1818
}
1919

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;
20+
// biome-ignore lint/suspicious/noExplicitAny: <>
21+
const { body: MDX, toc } = page.data as any;
2222

2323
return (
2424
<DocsPage toc={toc}>

0 commit comments

Comments
 (0)