We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6769eaa commit 99d0175Copy full SHA for 99d0175
1 file changed
app/api/contact/route.ts
@@ -2,7 +2,7 @@ import { ContactEmail } from "@/app/components/ContactEmail";
2
import { NextResponse } from "next/server";
3
import { Resend } from "resend";
4
5
-const resend = new Resend(process.env.RESEND_API_KEY);
+const resend = new Resend(process.env.RESEND_API_KEY!);
6
7
export async function POST(req: Request) {
8
try {
0 commit comments