Skip to content

Commit

Permalink
🔇 remove unused logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Fredkiss3 committed Jan 19, 2024
1 parent 114d16a commit 6f85b39
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/components/cache.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 6f85b39

Please sign in to comment.