NestJS - Middleware
Find the bug in this middleware snippet:
const mw = (req, res, next) => { if (req.isValid) next; else res.status(400).send('Bad Request'); }