Fix duplicate code in setup route

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
EOF
)
This commit is contained in:
Manohar Gupta 2026-05-10 05:15:37 +05:30
parent 804f12ac29
commit fa657a4ba9

View file

@ -117,10 +117,3 @@ export async function GET() {
return NextResponse.json({ error: String(error) }, { status: 500 });
}
}
return NextResponse.json({ success: true, message: "Types created" });
} catch (error) {
console.error(error);
return NextResponse.json({ error: String(error) }, { status: 500 });
}
}