This commit is contained in:
Siddharth Singh 2025-03-30 14:58:45 +05:30
parent 8de648a5c8
commit 28a551b3f9
No known key found for this signature in database

View file

@ -25,7 +25,6 @@ const cache = (f: () => (number | undefined) | Promise<number | undefined>, inte
lastCheck = now; lastCheck = now;
value = await f(); value = await f();
} }
console.log('error', value);
return Number(value || 0); return Number(value || 0);
}; };
}; };