Describe the bug
The first call to fetchMore() does not seem to actually fetch more, but instead re-fetches the initial data set.
To Reproduce
- Click the Fetch More button in this example a few times:
https://codesandbox.io/s/confident-dawn-67yb2?file=/src/App.tsx
- Note in the console that the fetch function is called twice with the initial index: once on page load, and once with the first click of the button. Subsequent clicks appear to work as expected
Expected behavior
Every call to fetchMore() should get more data, rather than getting data we already have.