I'm currently utilizing the react-full-page
package and while it's almost working well, I've come across two issues:
- After clicking on an anchor link like
, the scroll goes to the designated id but then jumps back to where it was before the click.<a href='#someId'>Go There</a>
- When opening a page link with an id like
, the page stays at the top despite having disabled scrolling withhttp://localhost:3000/#someIdWhereIWantThePageToBeOpened
disableScroll.on();
.
Any suggestions on how to resolve these problems would be greatly appreciated. Thank you in advance!