diff options
Diffstat (limited to 'src/api/routes/gifs/trending-gifs.ts')
-rw-r--r-- | src/api/routes/gifs/trending-gifs.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/routes/gifs/trending-gifs.ts b/src/api/routes/gifs/trending-gifs.ts index d3fdb00a..d0698fa0 100644 --- a/src/api/routes/gifs/trending-gifs.ts +++ b/src/api/routes/gifs/trending-gifs.ts @@ -41,7 +41,7 @@ router.get("/", route({}), async (req: Request, res: Response) => { }, ); - const { results } = (await response.json()) as any; // TODO: types + const { results } = await response.json(); res.json(results.map(parseGifResult)).status(200); }); |