Hi, I am using react useEffect hook for calling meteor methods in my app, but it showing a react warning in my browser console
Warning: Can’t perform a React state update on an unmounted component. This is a no-op, but it indicates a memory leak in your application. To fix, cancel all subscriptions and asynchronous tasks in a useEffect cleanup function
how can i fix this issue, is there a way to abort meteor RPC (Meteor methods) in callback function using AbortController()?