From 19b744ca678dd0fb591ebcb1a1cb7568248ae984 Mon Sep 17 00:00:00 2001 From: Max Peintner Date: Thu, 16 Oct 2025 07:22:27 +0200 Subject: [PATCH] fix(login): use default titles for password pages (#10904) # Which Problems Are Solved This change shows the default titles for password pages instead of dynamically showing the user name. # How the Problems Are Solved Both pages now show only the translated title text (verify.title and change.title respectively) instead of falling back to showing the user's display name. Co-authored-by: Livio Spring --- apps/login/src/app/(login)/password/change/page.tsx | 4 +++- apps/login/src/app/(login)/password/page.tsx | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/login/src/app/(login)/password/change/page.tsx b/apps/login/src/app/(login)/password/change/page.tsx index 9a3b73c9235..38293932dd0 100644 --- a/apps/login/src/app/(login)/password/change/page.tsx +++ b/apps/login/src/app/(login)/password/change/page.tsx @@ -50,7 +50,9 @@ export default async function Page(props: { searchParams: Promise
-

{sessionFactors?.factors?.user?.displayName ?? }

+

+ +

diff --git a/apps/login/src/app/(login)/password/page.tsx b/apps/login/src/app/(login)/password/page.tsx index 52f87f9fd25..c016b32b3a0 100644 --- a/apps/login/src/app/(login)/password/page.tsx +++ b/apps/login/src/app/(login)/password/page.tsx @@ -61,7 +61,9 @@ export default async function Page(props: { searchParams: Promise
-

{sessionFactors?.factors?.user?.displayName ?? }

+

+ +