Possible solution... `isAdBlockEnabled.ts` ```ts export const isAdBlockEnabled = async () => { try { await fetch('https://www3.doubleclick.net', { method: 'HEAD', mode: 'no-cors', cache: 'no-store', }); return false; } catch (err) { return true; } }; ```