You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following line is throwing an error due to containerRef.current being null.
react-simple-pull-to-refresh/build/index.esm.js in onScroll at line 258:26
/** * Check if user breached fetchMoreThreshold */if(canFetchMore&&getScrollToBottomValue()<fetchMoreThreshold&&onFetchMore){fetchMoreTresholdBreached=true;containerRef.current.classList.add('ptr--fetch-more-treshold-breached');<----Thisline is throwingtheerroronFetchMore().then(initContainer).catch(initContainer);}};
This can be triggered by the component getting unmounted during a scroll event.
The text was updated successfully, but these errors were encountered:
johnsonsu
changed the title
onSrolll null is not an object (evaluating 'P.current.classList')
onSrolll: null is not an object (evaluating 'P.current.classList')
May 24, 2023
The following line is throwing an error due to
containerRef.current
beingnull
.react-simple-pull-to-refresh/build/index.esm.js
in onScroll at line 258:26This can be triggered by the component getting unmounted during a scroll event.
The text was updated successfully, but these errors were encountered: