Change the callback to actually send a response message ``` app.use(function (_req: Request, res: Response, next: NextFunction) { const err = notFoundError(); res.status(err.status).json(err); }); ```