Remove automatic scroll to top effect in docs route

This commit is contained in:
Adam Shiervani 2025-03-04 19:50:39 +01:00
parent 86a89fee4c
commit 7802eefc69

View File

@ -144,12 +144,6 @@ export default function DocsRoute() {
section.links.find(link => link.href === location.pathname),
);
useEffect(() => {
window.scrollTo({
top: 0,
behavior: "smooth",
});
}, []);
const Component = useMemo(() => getMDXComponent(code), [code]);
return (