diff --git a/src/app/api/setup/route.ts b/src/app/api/setup/route.ts index 2f9b310..2f1e545 100644 --- a/src/app/api/setup/route.ts +++ b/src/app/api/setup/route.ts @@ -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 }); - } -}