Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const dispatchCancelToRedux = useConstCallback((queryKey: QueryKey) => {
reduxDispatch(cancelQuery(queryKey));
isPendingRef.current = false;
});
const dispatchCancelToRedux = useConstCallback((queryKey: QueryKey) => {
if (pendingRequests.current.has(queryKey)) {
reduxDispatch(cancelQuery(queryKey));
pendingRequests.current.delete(queryKey);
}
});