Protect against missing element

zio/stable
Paul Frazee 2024-05-06 18:06:31 -07:00
parent 0a8dc289ff
commit 032f849092
1 changed files with 4 additions and 5 deletions

View File

@ -110,15 +110,14 @@ function InnerApp() {
function App() {
const [isReady, setReady] = useState(false)
React.useEffect(() => {
initPersistedState().then(() => {
setReady(true)
const preloadElement = document.getElementById('preload');
preloadElement.remove();
const preloadElement = document.getElementById('preload')
preloadElement?.remove()
})
}, [])
if (!isReady) {