From 56facba7e75719e2827f969aa5354c35fceacc04 Mon Sep 17 00:00:00 2001 From: Leandro Facchinetti Date: Mon, 6 Apr 2020 09:59:21 -0400 Subject: [PATCH] Change default --- src/index.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index 940785f..ae9b6eb 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -11,8 +11,7 @@ import cryptoRandomString from "crypto-random-string"; export const WEB_PORT = process.env.WEB_PORT ?? 8000; export const EMAIL_PORT = process.env.EMAIL_PORT ?? 2525; export const BASE_URL = process.env.BASE_URL ?? "http://localhost:8000"; -export const EMAIL_DOMAIN = - process.env.EMAIL_DOMAIN ?? "kill-the-newsletter.com"; +export const EMAIL_DOMAIN = process.env.EMAIL_DOMAIN ?? "localhost"; export const ISSUE_REPORT = process.env.ISSUE_REPORT ?? "mailto:kill-the-newsletter@leafac.com";