SUPPORT-8783: Fix

This commit is contained in:
Eduard Tihomirov 2025-01-24 16:34:52 +03:00
parent 4249b277b2
commit 1c0f899d84
2 changed files with 2 additions and 5 deletions

View file

@ -4,10 +4,7 @@ document.addEventListener("DOMContentLoaded", () => {
// Выполняем fetch с использованием полученного URL
fetch(flLandingUrl, { mode: "no-cors" })
.then((response) => {
if (!response.ok) {
throw new Error("Server responded with status " + response.status);
}
.then(() => {
document.getElementById("cert-check-info").hidden = true;
})
.catch((error) => {