An unhandled error has occurred.
Reload
🗙
window.checkForNewVersionWithCallback = async function () {
const meta = document.querySelector('meta[name="index-client-version"]');
const meta = document.querySelector('meta[name="index-client-version"]');
const currentVersion = meta ? meta.content : "unknown";
const response = await fetch('/index.html', { cache: 'no-store' });
const html = await response.text();
const parser = new DOMParser();
const doc = parser.parseFromString(html, 'text/html');
const newVersion = doc.querySelector('meta[name="index-client-version"]').content;
return newVersion !== currentVersion;
window.reloadNow = function () {
location.reload(true);
window.getBlazorVersion = function () {
return meta ? meta.content : 'unknown';