Album page doesn't scroll to top when loaded
Closed this issue · 1 comments
Deleted user commented
Description
only when you navigate to an album page, it doesn't load the page at the top (normal browser behavior)
Steps to reproduce
go to the app, go from Library page to any album page
Deleted user commented
componentDidMount() {
...
// According to W3Schools, this solution is currently supported by all browsers.
window.scrollTo(0, 0);
...
}