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(
req: Request,
context: { params: Promise<{ providerId: number }> }
) {
const providerId = (await context.params).providerId;
}