RenderPipeline2
Deploy / deploy (push) Successful in 3m11s

This commit is contained in:
twotalesanimation
2026-08-01 16:47:26 +02:00
parent 9a49cdc6a3
commit 6adaf72114
3 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ export async function POST(req: NextRequest) {
try {
const body = await req.json();
const parsed = createExportSchema.parse(body);
const parsed = createExportSchema.parse(body) as Parameters<typeof createRenderExport>[0];
const result = await createRenderExport(parsed);
return NextResponse.json(result, { status: 201 });
} catch (error) {