small typos

This commit is contained in:
Maidul Islam
2025-02-23 18:55:33 +09:00
committed by =
parent b104f8c07d
commit f8153dd896
2 changed files with 2 additions and 2 deletions

View File

@@ -99,7 +99,7 @@ export const gatewayServiceFactory = ({
!envCfg.GATEWAY_RELAY_REALM
) {
throw new BadRequestError({
message: "Gateway handshake failed due to missing instance config."
message: "Gateway handshake failed due to missing instance configuration."
});
}

View File

@@ -79,7 +79,7 @@ export const pingGatewayAndVerify = async ({
if (certificate.subject.CN !== identityId || certificate.subject.O !== orgId) {
throw new BadRequestError({
message: `Invalid gateway. Certificate not found for ${identityId} in organisation ${orgId}`
message: `Invalid gateway. Certificate not found for ${identityId} in organization ${orgId}`
});
}