Adjusting error page

This commit is contained in:
Fred Boniface
2023-06-16 22:12:31 +01:00
parent 0d80556556
commit 8535492298
6 changed files with 29 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ function fromLocalStorage(storageKey, fallback) {
if (storedValue !== 'undefined' && storedValue !== null) {
return (typeof fallback === 'object')
? JSON.parse(storedValue)
: storedValue
: storedValue
}
}
return fallback