fix documentation

This commit is contained in:
sbwalker 2024-12-20 11:55:35 -05:00
parent ab5409d5b6
commit 55e18f2364

View File

@ -70,10 +70,10 @@ function replaceScript(script) {
newScript.onload = () => resolve();
newScript.onerror = (error) => reject(error);
// remove existing newScript script
// remove existing script
script.remove();
// replace with new newScript to force reload in Blazor
// replace with new script to force reload in Blazor
document.head.appendChild(newScript);
});
}