Skip to content

Commit be2d220

Browse files
committed
Dynamically renders sign in
1 parent 5e22c8b commit be2d220

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/app/auth/signin/page.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@ import MessageLinkFooter from "@/common/ui/MessageLinkFooter"
99

1010
const SITE_NAME = env.getOrThrow("FRAMNA_DOCS_TITLE")
1111
const HELP_URL = env.get("FRAMNA_DOCS_HELP_URL")
12+
13+
// Force page to be rendered dynamically to ensure we read the correct values for the environment variables.
14+
export const dynamic = "force-dynamic"
1215

13-
export default async function SignInPage() {
16+
export default async function Page() {
1417
return (
1518
<Box display="flex" height="100vh">
1619
<InfoColumn/>

0 commit comments

Comments
 (0)