This commit is contained in:
Max Peintner
2023-04-27 17:44:08 +02:00
parent 88e23907c4
commit b782b63dea

View File

@@ -3,7 +3,6 @@ import { NextRequest, NextResponse } from "next/server";
export async function POST(request: NextRequest) {
const body = await request.json();
console.log(body);
if (body) {
const { email, password, firstName, lastName } = body;