Skip to content

Commit

Permalink
Merge 576aafc into a260b24
Browse files Browse the repository at this point in the history
  • Loading branch information
DongSeonYoo committed Feb 1, 2024
2 parents a260b24 + 576aafc commit 0cf6948
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/guides/manually-running.md
Expand Up @@ -66,7 +66,7 @@ const validate = (validations: ContextRunner[]) => {
return async (req: express.Request, res: express.Response, next: express.NextFunction) => {
for (const validation of validations) {
const result = await validation.run(req);
if (result.errors.length) break;
if (!result.isEmpty()) break;
}

const errors = validationResult(req);
Expand Down

0 comments on commit 0cf6948

Please sign in to comment.