Add dummy default export to _notifications.ts
cgen-f42d76217455493c8bd4eebadf03234e
This commit is contained in:
parent
d33e6799fe
commit
d61fa45c92
1 changed files with 9 additions and 0 deletions
|
|
@ -40,3 +40,12 @@ export async function notifyOnboardingComplete(userId: string): Promise<void> {
|
|||
"You've completed your profile setup. Let's get started!",
|
||||
);
|
||||
}
|
||||
|
||||
// Dummy default export for Vercel (this file is a utility, not a handler)
|
||||
import type { VercelRequest, VercelResponse } from "@vercel/node";
|
||||
export default async function handler(
|
||||
req: VercelRequest,
|
||||
res: VercelResponse,
|
||||
) {
|
||||
return res.status(501).json({ error: "Not a handler" });
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue