diff --git a/frontend/src/app/api/categories/route.ts b/frontend/src/app/api/categories/route.ts index e7e64107..a38eaf84 100644 --- a/frontend/src/app/api/categories/route.ts +++ b/frontend/src/app/api/categories/route.ts @@ -18,11 +18,11 @@ const fetchScripts = async (): Promise => { ); const files: { download_url: string }[] = await response.json(); const scripts = await Promise.all( - files.map(async (file) => { + files.map(async (file): Promise