More linter

This commit is contained in:
Fang-Pen Lin
2025-11-04 16:39:50 -08:00
parent 694a13fce2
commit cb2810b263
2 changed files with 3 additions and 2 deletions

View File

@@ -44,7 +44,7 @@ export const registerPkiAcmeRouter = async (server: FastifyZodProvider) => {
req: R;
schema?: TSchema;
}): Promise<TAuthenciatedJwsPayload<T>> => {
return await server.services.pkiAcme.validateExistingAccountJwsPayload({
return server.services.pkiAcme.validateExistingAccountJwsPayload({
url: new URL(req.url, `${req.protocol}://${req.hostname}`),
profileId: (req.params as { profileId: string }).profileId,
rawJwsPayload: req.body as TRawJwsPayload,
@@ -71,7 +71,7 @@ export const registerPkiAcmeRouter = async (server: FastifyZodProvider) => {
if (!strBody) {
done(null, undefined);
}
const json = JSON.parse(strBody as string);
const json = JSON.parse(strBody);
done(null, json);
} catch (err) {
const error = err as Error;

View File

@@ -90,6 +90,7 @@ export const pkiAcmeChallengeServiceFactory = ({
} else if (cause instanceof Error) {
errors = [cause];
}
// eslint-disable-next-line no-unreachable-loop
for (const err of errors) {
// TODO: handle multiple errors, return a compound error instead of just the first error
const fetchError = err as FetchError;