summary refs log tree commit diff
path: root/src/api/routes/gifs/search.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/routes/gifs/search.ts')
-rw-r--r--src/api/routes/gifs/search.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/routes/gifs/search.ts b/src/api/routes/gifs/search.ts
index 02022004..ae63d643 100644
--- a/src/api/routes/gifs/search.ts
+++ b/src/api/routes/gifs/search.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);
 });