Remove debug statement

This commit is contained in:
Adrian Vollmer 2024-04-22 20:01:12 +02:00
parent 66aa150326
commit 763c120413

View File

@ -69,7 +69,6 @@ const { fetch: originalFetch } = window;
async function waitFor(predicate, timeout) {
return new Promise((resolve, reject) => {
const check = () => {
console.log('checking', predicate());
if (!predicate()) return;
clearInterval(interval);
resolve();