diff --git a/src/SEQTA.ts b/src/SEQTA.ts index ea03f716..83a80e78 100644 --- a/src/SEQTA.ts +++ b/src/SEQTA.ts @@ -378,14 +378,11 @@ export function RemoveBackground() { } export async function waitForElm(selector: string, usePolling: boolean = false, interval: number = 100): Promise { - console.log('[BetterSEQTA+] Waiting for element:', selector); - if (usePolling) { return new Promise((resolve) => { const checkForElement = () => { const element = document.querySelector(selector); if (element) { - console.log('[BetterSEQTA+] Element found:', selector); resolve(element); } else { setTimeout(checkForElement, interval);