From 80edccc953983b1eac2b67a3391cb7a87282cfe8 Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Sun, 20 Apr 2025 12:06:34 -0400 Subject: [PATCH] Update org-service.ts --- backend/src/services/org/org-service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/services/org/org-service.ts b/backend/src/services/org/org-service.ts index 531673806..86625d71a 100644 --- a/backend/src/services/org/org-service.ts +++ b/backend/src/services/org/org-service.ts @@ -419,14 +419,14 @@ export const orgServiceFactory = ({ if (samlCfg && !samlCfg.lastUsed) { throw new BadRequestError({ message: - "To apply the new SAML auth enforcement, please log in via SAML again. This step is required to enforce SAML-based authentication." + "To apply the new SAML auth enforcement, please log in via SAML at least once. This step is required to enforce SAML-based authentication." }); } if (oidcCfg && !oidcCfg.lastUsed) { throw new BadRequestError({ message: - "To apply the new OIDC auth enforcement, please log in via OIDC again. This step is required to enforce OIDC-based authentication." + "To apply the new OIDC auth enforcement, please log in via OIDC at least once. This step is required to enforce OIDC-based authentication." }); } }