diff --git a/plugins/woocommerce-admin/client/marketplace/utils/functions.tsx b/plugins/woocommerce-admin/client/marketplace/utils/functions.tsx index a9058a8b19b..4a5109900a4 100644 --- a/plugins/woocommerce-admin/client/marketplace/utils/functions.tsx +++ b/plugins/woocommerce-admin/client/marketplace/utils/functions.tsx @@ -31,7 +31,6 @@ const maxFetchCacheSize = 100; const fetchCache = new Map(); function maybePruneFetchCache() { - console.log(fetchCache.size); while ( fetchCache.size > maxFetchCacheSize ) { fetchCache.delete( fetchCache.keys().next().value ); }