Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/whatsapp-crm/resources/js/Composables/
Upload File :
Current File : /home/users/unlimited/www/whatsapp-crm/resources/js/Composables/ReCaptcha.js

export function useRecaptcha(siteKey) {
    const script = document.createElement('script');
    script.src = `https://www.google.com/recaptcha/api.js?render=${siteKey}`;
    script.async = true;
    script.defer = true;

    // Check if the script is already loaded to avoid duplicates
    if (!document.querySelector(`script[src="https://www.google.com/recaptcha/api.js?render=${siteKey}"]`)) {
        document.head.appendChild(script);
    }
}

export function unMountRecaptcha(siteKey) {
    const scriptSrc = `https://www.google.com/recaptcha/api.js?render=${siteKey}`;
    const scriptElement = document.querySelector(`script[src="${scriptSrc}"]`);

    if (scriptElement) {
        document.head.removeChild(scriptElement);
    }
}