From b59350cf9428242420a3277d06cff190175595b4 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 16 Nov 2025 04:53:48 +0000 Subject: [PATCH] Add dummy default export for Vercel cgen-2308aa3d76764e9dbe2a3d9f632788c6 --- api/opportunities.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/api/opportunities.ts b/api/opportunities.ts index 93019a0d..992ebc7d 100644 --- a/api/opportunities.ts +++ b/api/opportunities.ts @@ -313,3 +313,11 @@ export async function closeOpportunity(opportunityId: string, userId: string) { ); } } + +// Dummy default export for Vercel (this file is a utility, not a handler) +export default async function handler( + req: VercelRequest, + res: VercelResponse, +) { + return res.status(501).json({ error: "Not a handler" }); +}