I have a service with 'limit' and 'skip' parameters that pushes the response to an array, which is then set to local storage and then mapped to a list.
I have a 'load more' button that increases the skip and invokes the service again.
the result is a list that keeps extending when the user clicks 'load more.
This all works well except after the service is called and the results mapped the page jumps to the top of the list.
what code can i use to scroll to the bottom of the page?