You're getting this error because in Next.js 15, params
is actually a Promise that needs to be awaited. Here is how you can fix this:
export async function GET(
request: Request,
params: { params: Promise<{ id: string }> }
) {
const id = await params.id
// rest of your code
}