Кто нибудь сталкивался с подобным?
async componentDidMount() {
appsFlyer.onInstallConversionData(
data => {
console.log(data);
this.setState({
AppsFData: data,
});
}
);
}
Вот такая ошибка:
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 the componentWillUnmount method.
Привет! У тебя идёт обновление состояния когда компонент уже размонтирован.
Как можно избавиться от этого варнинга и получить то что мне нужно?
В МЖЦ componentWillUnmount отмени асинхронный запрос.
Обсуждают сегодня