From 692b8d026c6768443de06899b2af4ac9e249b117 Mon Sep 17 00:00:00 2001 From: KM Koushik Date: Wed, 2 Apr 2025 20:52:40 +1100 Subject: [PATCH] fix smtp settings not fetched from env (#143) --- apps/web/src/app/(dashboard)/dev-settings/smtp/page.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/web/src/app/(dashboard)/dev-settings/smtp/page.tsx b/apps/web/src/app/(dashboard)/dev-settings/smtp/page.tsx index 59b61e0..c05c4b1 100644 --- a/apps/web/src/app/(dashboard)/dev-settings/smtp/page.tsx +++ b/apps/web/src/app/(dashboard)/dev-settings/smtp/page.tsx @@ -9,6 +9,8 @@ import { import { TextWithCopyButton } from "@unsend/ui/src/text-with-copy"; import { env } from "~/env"; +export const dynamic = "force-dynamic"; + export default function ExampleCard() { const host = env.SMTP_HOST; const user = env.SMTP_USER;