I think you have a problem with observer function. You can replace your observer function with a listener for user scroll action.
window.addEventListener('scroll', function() {
if (window.innerHeight + window.scrollY >= document.documentElement.scrollHeight) {
loadNextPage();
}
}