I'm trying to fetch the advertisers list when the component mounts, but it is causing me memory leak, Any suggestions ? i'll be grateful :)
 useEffect(() => {
    const fetchData = async () => {
      const list = await Api.listAdvertisers();
      setAdvertisers(list);
    };
    fetchData();
  }, []);