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
+2 -1
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