diff options
author | ChrisChrome <christophercookman@gmail.com> | 2022-08-10 04:35:10 -0600 |
---|---|---|
committer | ChrisChrome <christophercookman@gmail.com> | 2022-08-10 04:35:10 -0600 |
commit | f79baa7b2cb58106ad2ffb69ce6166ce821c5d29 (patch) | |
tree | e8a5d1560e68d93aeb24b4df9de2cfdabd8d320c | |
parent | I'm probably forgetting a lot of things, but hey, it works (diff) | |
download | server-f79baa7b2cb58106ad2ffb69ce6166ce821c5d29.tar.xz |
Whoops, missed one
-rw-r--r-- | api/src/routes/applications/#id/index.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/api/src/routes/applications/#id/index.ts b/api/src/routes/applications/#id/index.ts index 24df2d88..0aced582 100644 --- a/api/src/routes/applications/#id/index.ts +++ b/api/src/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); }); |