docs: fix scroll + divider issues (#9663)

This commit is contained in:
Shahed Nasser
2024-10-21 09:54:05 +03:00
committed by GitHub
parent 34621f53a3
commit b4855825be
8 changed files with 73 additions and 28 deletions
@@ -36,7 +36,7 @@ export const usePageScrollManager = () => {
targetElm?.scrollIntoView()
}
}, [pathname, scrollableElement])
}, [pathname, scrollableElement, checkedPageReload])
useEffect(() => {
if (!scrollableElement || checkedPageReload) {
@@ -71,5 +71,5 @@ export const usePageScrollManager = () => {
)
}
})
}, [scrollableElement])
}, [scrollableElement, checkedPageReload])
}