Skip to content

Commit

Permalink
Comment about parsing JSON
Browse files Browse the repository at this point in the history
  • Loading branch information
renatodellosso committed Sep 10, 2024
1 parent 9dcb5ee commit b61212c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ResendUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ namespace ResendUtils {

resend.emails.send({
from: "Gearbox Server <[email protected]>",
to: JSON.parse(process.env.DEVELOPER_EMAILS),
to: JSON.parse(process.env.DEVELOPER_EMAILS), // Environment variables are always strings, so we need to parse it
subject,
text: message,
})
Expand Down

0 comments on commit b61212c

Please sign in to comment.