summary refs log tree commit diff
diff options
context:
space:
mode:
authorChrisChrome <christophercookman@gmail.com>2022-08-10 04:35:10 -0600
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-12-18 22:44:11 +1100
commit8650120ebcafc40917148c87fc01235698290a7c (patch)
treefaf6f32939d575ca2f8a03c35992c487ac6d11fc
parentI'm probably forgetting a lot of things, but hey, it works (diff)
downloadserver-8650120ebcafc40917148c87fc01235698290a7c.tar.xz
Whoops, missed one
-rw-r--r--src/api/routes/applications/#id/index.ts1
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);
 });