diff --git a/src/app.ts b/src/app.ts index 6ef80fa..6af2048 100644 --- a/src/app.ts +++ b/src/app.ts @@ -31,10 +31,10 @@ async function main() { if (err) { res.status(400).send({ type: "error", - payload: "The body of your request did not contain valid data" - }) + payload: "The body of your request did not contain valid data", + }); } else { - next() + next(); } });