diff options
author | ChrisChrome <christophercookman@gmail.com> | 2022-08-10 04:35:10 -0600 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-12-18 22:44:11 +1100 |
commit | 8650120ebcafc40917148c87fc01235698290a7c (patch) | |
tree | faf6f32939d575ca2f8a03c35992c487ac6d11fc | |
parent | I'm probably forgetting a lot of things, but hey, it works (diff) | |
download | server-8650120ebcafc40917148c87fc01235698290a7c.tar.xz |
Whoops, missed one
-rw-r--r-- | src/api/routes/applications/#id/index.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/api/routes/applications/#id/index.ts b/src/api/routes/applications/#id/index.ts index 24df2d88..0aced582 100644 --- a/src/api/routes/applications/#id/index.ts +++ b/src/api/routes/applications/#id/index.ts @@ -18,7 +18,6 @@ router.patch("/", route({}), async (req: Request, res: Response) => { } if(req.body.tags) app.tags = req.body.tags; await app.save(); - debugger; res.json(app).status(200); }); |