Current Path : /proc/self/cwd/wp-content/plugins/leadin/scripts/utils/ |
Current File : //proc/self/cwd/wp-content/plugins/leadin/scripts/utils/useThirdPartyCookiesEnabled.ts |
import { useEffect, useState } from 'react'; import { checkThirdPartyCookies } from './thirdPartyCookies'; export function useThirdPartyCookiesEnabled() { const [cookiesEnabled, setCookiesEnabled] = useState(false); useEffect(() => { checkThirdPartyCookies().then(result => setCookiesEnabled(result && !/firefox/i.test(navigator.userAgent)) ); }, []); return cookiesEnabled; }