summary refs log tree commit diff
path: root/src/api/routes/stickers/#sticker_id/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/routes/stickers/#sticker_id/index.ts')
-rw-r--r--src/api/routes/stickers/#sticker_id/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/routes/stickers/#sticker_id/index.ts b/src/api/routes/stickers/#sticker_id/index.ts
index 2ea81bf9..72765652 100644
--- a/src/api/routes/stickers/#sticker_id/index.ts
+++ b/src/api/routes/stickers/#sticker_id/index.ts
@@ -34,7 +34,7 @@ router.get(
 		const { sticker_id } = req.params;
 
 		res.json(await Sticker.find({ where: { id: sticker_id } }));
-	},
+	}
 );
 
 export default router;