fingerprintjs/fingerprintjs-pro-react

Add option to ignore cache if "immediate" is set to true

TheUnderScorer opened this issue ยท 1 comments

Right now it you use the immediate flag to get data:

  const { getData, data, isLoading, error } = useVisitorData(
    { extendedResult: true },
    { immediate: true }
  );

there is no option to disable cache. It would be good if user could do something like this:

  const { getData, data, isLoading, error } = useVisitorData(
    { extendedResult: true, ignoreCache: true },
    { immediate: true }
  );

We can still keep the option to ignore cache in getData as well, and it should overwrite the option set in useVisitorData if it was passed there.

ilfa commented

๐ŸŽ‰ This issue has been resolved in version 1.4.0 ๐ŸŽ‰

The release is available on:

Your semantic-release bot ๐Ÿ“ฆ๐Ÿš€