Skip to content

Commit

Permalink
fixed: removed cache key logging (#1805)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyriiherman committed Apr 2, 2024
1 parent 17ed7eb commit 79e7247
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/utils/memorize.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ function memorize(fn, { cache = new Map() } = {}, callback) {
*/
const memoized = (...arguments_) => {
const [key] = arguments_;
console.log("CACHE", key);
const cacheItem = cache.get(key);

if (cacheItem) {
Expand Down

0 comments on commit 79e7247

Please sign in to comment.