Fix chat on pages without pricing section — guard pricing-period element access in script.js to prevent TDZ crash

This commit is contained in:
Oliver
2026-06-23 10:42:41 -03:00
parent 5206d1c3c9
commit afce3a3ddd
+4 -3
View File
@@ -283,10 +283,11 @@ function updatePeriodDisplay() {
? "/ month ✦ yearly"
: "/ month";
}
document
.getElementById("pricing-period")
.addEventListener("change", updatePeriodDisplay);
const pricingPeriod = document.getElementById("pricing-period");
if (pricingPeriod) {
pricingPeriod.addEventListener("change", updatePeriodDisplay);
updatePeriodDisplay(); // fire on load so yearly bonuses show by default
}
const SERVER_WEBHOOK = "https://n8n.derez.ai/webhook/server";
initServerLocations(); // fetch live server availability