diff --git a/backend/src/middleware/auth/checks/auth-checks.ts b/backend/src/middleware/auth/checks/auth-checks.ts index d4552af5..1ab33da7 100644 --- a/backend/src/middleware/auth/checks/auth-checks.ts +++ b/backend/src/middleware/auth/checks/auth-checks.ts @@ -16,7 +16,7 @@ export function authorize) => boolean | Promise ): RequestHandler { // Bypass authentication during testing - if (getEnvVar(envVars.RunMode) === "test") { + if (getEnvVar(envVars.RunMode) === 'test') { return async ( _req: AuthenticatedRequest, _res: express.Response,