From d50dc746c7232c9d15887354d309ae201aef5e31 Mon Sep 17 00:00:00 2001 From: Max Peintner Date: Tue, 15 Apr 2025 09:39:42 +0200 Subject: [PATCH] fix: 405 --- .../app/(login)/authenticator/set/page.tsx | 23 +++++++++++-------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/apps/login/src/app/(login)/authenticator/set/page.tsx b/apps/login/src/app/(login)/authenticator/set/page.tsx index 793cb6714d..8240023c2d 100644 --- a/apps/login/src/app/(login)/authenticator/set/page.tsx +++ b/apps/login/src/app/(login)/authenticator/set/page.tsx @@ -157,17 +157,20 @@ export default async function Page(props: { > )} -
-

{t("linkWithIDP")}

-
- {loginSettings?.allowExternalIdp && identityProviders && ( - + <> + {identityProviders.length && ( +
+

{t("linkWithIDP")}

+
+ )} + + )}