diff --git a/backend/src/ee/services/saml-config/saml-config-service.ts b/backend/src/ee/services/saml-config/saml-config-service.ts index 2dee8afca..5430b0afc 100644 --- a/backend/src/ee/services/saml-config/saml-config-service.ts +++ b/backend/src/ee/services/saml-config/saml-config-service.ts @@ -150,7 +150,7 @@ export const samlConfigServiceFactory = ({ samlConfig = await samlConfigDAL.findOne({ orgId: dto.orgId }); if (!samlConfig) { throw new NotFoundError({ - message: `Organization with ID '${dto.orgId}' not found` + message: `SAML configuration for organization with ID '${dto.orgId}' not found` }); } } else if (dto.type === "orgSlug") {