Bug in isLoading when using useMoralisCloudFunction in react

isLoading hook only works as expected when I fetch the data for the first time. When I call the fetch function subsequently the isLoading hook is not getting updated properly.

const { fetch, data, error, isLoading } = useMoralisCloudFunction(
  "topScores",
  {
    limit
  },
  { autoFetch: false }
);

would you know what is wrong in this code?

I would say that the problem is in line 91 and potentially line 92 because it is checking if the data variable is empty which on the first call is true, but on subsequent calls its not true because there is some data already out there.

But I am not sure if just deleting those lines would not cause some issues somewhere else because that looks like it is used in other functions in react-moralis.