style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-05-14 17:24:45 +00:00
parent 3e808235d7
commit 7e2160f70d

View file

@ -16,7 +16,7 @@ export function authorize<P, ResBody, ReqBody, ReqQuery, Locals extends Record<s
accessCondition: (auth: AuthenticationInfo, req: AuthenticatedRequest<P, ResBody, ReqBody, ReqQuery, Locals>) => boolean | Promise<boolean>
): RequestHandler<P, ResBody, ReqBody, ReqQuery, Locals> {
// Bypass authentication during testing
if (getEnvVar(envVars.RunMode) === "test") {
if (getEnvVar(envVars.RunMode) === 'test') {
return async (
_req: AuthenticatedRequest<P, ResBody, ReqBody, ReqQuery, Locals>,
_res: express.Response,