TypeError: Невозможно прочитать свойство 'state' undefined. Я попытался получить pr_cluster документа в firestore, но возникла ошибка.
this.props.firebase.cartItems().doc(authUser.uid).collection('products').limit(1).onSnapshot(function(querySnapshot) {
querySnapshot.forEach(function(doc) {
this.state.pr_cluster = doc.data().pr_cluster;
});
});