SUPPORT-8783: Fix

(cherry picked from commit fa549ab779db8b9a29927987529a0da62f90dda0)
This commit is contained in:
Eduard Tihomirov 2025-01-27 11:50:59 +03:00
parent d6542f36f2
commit 13cf8be812

View file

@ -13,7 +13,7 @@ export class HomeLandingComponent implements OnInit {
ngOnInit(): void {
let url = this.appConfigService.getParamValue("cert_check_url")
fetch(url)
fetch(url, { mode: "no-cors" })
.then(() => {
document.getElementById("cert-check-info").hidden = true;
})