Fix missing effect cleanup (#1986)

This commit is contained in:
dan 2023-11-24 19:22:00 +00:00 committed by GitHub
parent 7ccbd14d5f
commit 43c8fb6f03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,9 +36,10 @@ function ShellInner() {
useAuxClick()
useEffect(() => {
navigator.addListener('state', () => {
const unsubscribe = navigator.addListener('state', () => {
closeAllActiveElements()
})
return unsubscribe
}, [navigator, closeAllActiveElements])
const showBottomBar = isMobile && !onboardingState.isActive