Your IP : 216.73.216.1


Current Path : /proc/self/cwd/wp-content/plugins/leadin/scripts/utils/
Upload File :
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;
}