Skip to content

Commit

Permalink
updated package.json + minor mail api fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lakshaybhushan committed Dec 17, 2024
1 parent 94bdc55 commit eb62932
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/api/mail/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export async function POST(request: NextRequest, response: NextResponse) {
to: [email],
subject: "Thankyou for wailisting the Next.js + Notion CMS template!",
reply_to: "[email protected]",
html: render(WelcomeTemplate({ userFirstname: firstname })),
html: await render(WelcomeTemplate({ userFirstname: firstname })),
});

// const { data, error } = { data: true, error: null }
Expand Down
Binary file modified bun.lockb
Binary file not shown.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nextjs-notion-waitlist-template",
"version": "1.0.0",
"version": "1.5.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -14,12 +14,14 @@
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@react-email/components": "0.0.19",
"@react-email/render": "^1.0.3",
"@svgr/webpack": "^8.1.0",
"@upstash/ratelimit": "^1.2.1",
"@upstash/redis": "^1.31.6",
"@vercel/analytics": "^1.3.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.15.0",
"lucide-react": "^0.396.0",
"next": "14.2.4",
"next-themes": "^0.3.0",
Expand Down

0 comments on commit eb62932

Please sign in to comment.