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
Total Images loaded are 20. While default images that should be loaded without scrolling must be 10.
This is because the useEffect is run on mount, which is meant to be run only when query changes.
On Searching for a query
Total Images loaded are 20. Out of which last ten are repetition of first 10.
This happens because for a small time gap, the dataLength === 0 and thus the intersection is observed which triggers the effect which runs on every change in IsBottomVisible.
The text was updated successfully, but these errors were encountered:
How to reproduce:
On Home page (without any search)
query
changes.On Searching for a query
The text was updated successfully, but these errors were encountered: