Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
ekulno committed Jul 21, 2024
1 parent 39a1394 commit 8f68c5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/server.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ if (missingEnvVars.length){
}

const resend = new Resend(process.env['RESEND_API_KEY']);
const toMail = process.env['RESEND_TO_EMAIL'];
const fromMail = process.env['RESEND_FROM_EMAIL'];
const toMail = process.env['RESEND_TO_EMAIL']!;
const fromMail = process.env['RESEND_FROM_EMAIL']!;

const PORT = process.env.PORT || 3000;
const app = express();
Expand Down

0 comments on commit 8f68c5d

Please sign in to comment.