diff --git a/apps/frontend/src/public/promo-frame.html b/apps/frontend/src/public/promo-frame.html index a0d1c2ee8..6cbfed294 100644 --- a/apps/frontend/src/public/promo-frame.html +++ b/apps/frontend/src/public/promo-frame.html @@ -140,7 +140,11 @@ function syncAgreeState() { const primaryButton = document.querySelector('[mode="primary"]'); - if (primaryButton && primaryButton.textContent && primaryButton.textContent.includes("AGREE")) { + if ( + primaryButton && + primaryButton.textContent && + primaryButton.textContent.includes("AGREE") + ) { primaryButton.click(); } else { setTimeout(syncAgreeState, 100);