From 6163710282e5ebeec2853a35074d7ed5f7e600c0 Mon Sep 17 00:00:00 2001 From: Stefan Benz <46600784+stebenz@users.noreply.github.com> Date: Fri, 14 Mar 2025 09:51:56 +0100 Subject: [PATCH] fix: enable saml sp --- apps/login/src/components/sign-in-with-idp.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/login/src/components/sign-in-with-idp.tsx b/apps/login/src/components/sign-in-with-idp.tsx index 5af5878759..d10d1390f2 100644 --- a/apps/login/src/components/sign-in-with-idp.tsx +++ b/apps/login/src/components/sign-in-with-idp.tsx @@ -88,6 +88,7 @@ export function SignInWithIdp({ ), [IdentityProviderType.GITLAB]: SignInWithGitlab, [IdentityProviderType.GITLAB_SELF_HOSTED]: SignInWithGitlab, + [IdentityProviderType.SAML]: SignInWithGeneric, }; const Component = components[type];