diff --git a/app/api/notion/route.ts b/app/api/notion/route.ts index ddb6474ce..4d853b887 100644 --- a/app/api/notion/route.ts +++ b/app/api/notion/route.ts @@ -34,10 +34,10 @@ export async function POST(req: NextRequest) { }, plain_text: topic, }, - ], + ] as any, }, }, - children: blocks, + children: blocks as any, }); return NextResponse.json(res); }