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 | 55d111c68b244853a9ceb1c3baafdff97e89a36e (patch) | |
tree | eca4cec2bf8a596e785907715f5c7e014ca8d7b8 /src | |
parent | I'm probably forgetting a lot of things, but hey, it works (diff) | |
download | server-55d111c68b244853a9ceb1c3baafdff97e89a36e.tar.xz |
Whoops, missed one
Diffstat (limited to 'src')
-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); }); |