diff --git a/src/components/cache.tsx b/src/components/cache.tsx index d469e6e8..7f0862d0 100644 --- a/src/components/cache.tsx +++ b/src/components/cache.tsx @@ -38,10 +38,9 @@ async function evaluateFile(filePath: string) { export const evaluateClientReferences = cache( async function evaluateClientReferences() { const loadClientRefs = async () => - await listFilesRecursively().then(async (files) => { - console.log({ manifestFiles: files }); - return await Promise.allSettled(files.map(evaluateFile)); - }); + await listFilesRecursively().then( + async (files) => await Promise.allSettled(files.map(evaluateFile)) + ); if (process.env.NODE_ENV === "development") { await loadClientRefs(); } else {