csantiago132/react-jams

Album page doesn't scroll to top when loaded

Closed this issue · 1 comments

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

componentDidMount() {
    ...
    // According to W3Schools, this solution is currently supported by all browsers.
    window.scrollTo(0, 0);
    ...
}