if (localStorage.getItem("returnUrlSurvey") !== null) { const returnUrl = localStorage.getItem('returnUrlSurvey'); const checkHomeUrl = new URL(window.location.href); const searchParams = checkHomeUrl.searchParams; const utmSourceValue = searchParams.get('utm_source'); if (returnUrl && utmSourceValue === 'conclusao_eleitos') { var returnPostURl = new URL(returnUrl); returnPostURl.searchParams.append('utm_source', 'conclusao_eleitos'); localStorage.removeItem('returnUrlSurvey'); window.location.href = returnPostURl.href; } }