I want my page to scroll to the top on page load, it semi works just now, but if I have scrolled down further than the size of my target page it no longer works, seems strange, any simple fix?
useEffect(() => {
window.scrollTo({ top: 0, behavior: "smooth" });
}, []);