There was an error while loading. Please reload this page.
1 parent 6a7fabf commit 79c664aCopy full SHA for 79c664a
1 file changed
apps/webapp/app/components/StaleAssetRecovery.tsx
@@ -158,7 +158,9 @@ const script = `(function () {
158
});
159
return;
160
}
161
- var text = final ? "This page failed to load properly. Please reload." : "Loading…";
+ // ASCII only: documents are served without an explicit charset, so
162
+ // non-ASCII here can render as mojibake on a broken page.
163
+ var text = final ? "This page failed to load properly. Please reload." : "Loading...";
164
var existing = document.getElementById("stale-asset-overlay-text");
165
if (existing) {
166
existing.textContent = text;
0 commit comments