ankeetmaini/react-infinite-scroll-component

The function passed in the next props is not getting triggered for the chrome and firefox

kushalmraut opened this issue · 3 comments

The function passed in the next props is not getting triggered for the chrome and firefox
It is working fine in the safari

here is my code

<InfiniteScroll
               dataLength={recipe_data.results.length}
               next={fetchMoreRecipes}
               hasMore={recipe_data.next ? true : false}
               
               loader={
                 <>
                   <Loading />
                 </>
               }
             >
              ....
</InfiniteScroll>

Thank you

same problem not working (executing) in chrome the Function passed to next in InifiniteScroll Component

Same here, is there a fix for this?

Same issue happening in here. Did you find any solution?