Skip to content

Commit

Permalink
flat-cache - removing console.log reminant
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredwray committed Dec 11, 2024
1 parent 0e15c4b commit d7f8db2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/flat-cache/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ export class FlatCache extends Hookified {
const items = this._parse(data);
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
for (const key of Object.keys(items)) {
console.log('key', items[key]);
this._cache.set(items[key].key as string, items[key].value, {expire: items[key].expires as number});
}

Expand Down

0 comments on commit d7f8db2

Please sign in to comment.