fix build
Some checks failed
Build and Push App / build (push) Failing after 21s

This commit is contained in:
2026-04-15 22:40:04 +02:00
parent a38c5d1638
commit 889e70bfc0
16 changed files with 135 additions and 42 deletions

View File

@@ -2,7 +2,10 @@ import { NextRequest, NextResponse } from 'next/server'
import prisma from '../../../../lib/prisma'
// PATCH /api/users/me — Update personal user profile
export async function PATCH(request: NextRequest) {
export async function PATCH(
request: NextRequest,
context: { params: Promise<any> }
): Promise<Response> {
try {
const userId = request.headers.get('x-user-id')
const data = await request.json()