From 4ee2a0dae70930907dea2b6458270ab2a571a37b Mon Sep 17 00:00:00 2001 From: Fang-Pen Lin Date: Thu, 11 Dec 2025 11:42:20 -0800 Subject: [PATCH] Fix error caused by rebase --- backend/src/ee/services/pki-acme/pki-acme-service.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/src/ee/services/pki-acme/pki-acme-service.ts b/backend/src/ee/services/pki-acme/pki-acme-service.ts index 97a396e27..57582655a 100644 --- a/backend/src/ee/services/pki-acme/pki-acme-service.ts +++ b/backend/src/ee/services/pki-acme/pki-acme-service.ts @@ -613,7 +613,6 @@ export const pkiAcmeServiceFactory = ({ // if not, we may be able to reject it early with an unsupportedIdentifier error. // TODO: ideally, we should return an error with subproblems if we have multiple unsupported identifiers - const profile = await validateAcmeProfile(profileId); if (payload.identifiers.some((identifier) => identifier.type !== AcmeIdentifierType.DNS)) { throw new AcmeUnsupportedIdentifierError({ message: "Only DNS identifiers are supported" }); }