diff options
Diffstat (limited to 'src/api/routes/stickers/#sticker_id/index.ts')
-rw-r--r-- | src/api/routes/stickers/#sticker_id/index.ts | 2 |
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; |