Skip to content

Commit 9d2d237

Browse files
committed
fix build
1 parent 5534b00 commit 9d2d237

File tree

1 file changed

+1
-1
lines changed
  • apps/docs/app/[lang]/[[...slug]]

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export default async function Page(props: { params: Promise<{ slug?: string[]; l
6060
const page = source.getPage(slug, lang)
6161
if (!page) notFound()
6262

63-
const data = page.data as PageData & {
63+
const data = page.data as unknown as PageData & {
6464
_openapi?: { method?: string }
6565
getAPIPageProps?: () => ApiPageProps
6666
}

0 commit comments

Comments
 (0)