From b61212c54bf141c3c0ebbb958fd3d6d2ce494f19 Mon Sep 17 00:00:00 2001 From: renatodellosso Date: Mon, 9 Sep 2024 22:02:27 -0400 Subject: [PATCH] Comment about parsing JSON --- lib/ResendUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ResendUtils.ts b/lib/ResendUtils.ts index 616a375a..53cc9f7b 100644 --- a/lib/ResendUtils.ts +++ b/lib/ResendUtils.ts @@ -49,7 +49,7 @@ namespace ResendUtils { resend.emails.send({ from: "Gearbox Server ", - 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, })