enhance(client): Force error screen (#8947)

This commit is contained in:
Kainoa Kanter 2023-01-16 10:26:41 -08:00 committed by GitHub
parent 3feaf39294
commit 84b8ffb7d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -24,6 +24,11 @@
const v = localStorage.getItem('v') || VERSION; const v = localStorage.getItem('v') || VERSION;
let forceError = localStorage.getItem('forceError');
if (forceError != null) {
renderError('FORCED_ERROR', 'This error is forced by having forceError in local storage.')
}
//#region Detect language & fetch translations //#region Detect language & fetch translations
const localeVersion = localStorage.getItem('localeVersion'); const localeVersion = localStorage.getItem('localeVersion');
const localeOutdated = (localeVersion == null || localeVersion !== v); const localeOutdated = (localeVersion == null || localeVersion !== v);