Protect against missing element
parent
0a8dc289ff
commit
032f849092
|
@ -115,10 +115,9 @@ function App() {
|
|||
initPersistedState().then(() => {
|
||||
setReady(true)
|
||||
|
||||
const preloadElement = document.getElementById('preload');
|
||||
preloadElement.remove();
|
||||
const preloadElement = document.getElementById('preload')
|
||||
preloadElement?.remove()
|
||||
})
|
||||
|
||||
}, [])
|
||||
|
||||
if (!isReady) {
|
||||
|
|
Loading…
Reference in New Issue