У меня проблемы с отправкой userId в мою коллекцию на firebase, и единственное, что отправляет, это "userId: undefined". Что я должен поставить на поле userId?
class AddTopic extends Component {
state = {
userName: "",
topic: "",
date: "",
userId: `${this.userId}`
};
onSubmit = e => {
e.preventDefault();
const newTopic = this.state;
const { firestore, history } = this.props;
firestore
.add({ collection: "topics" }, newTopic)
.then(() => history.push("/"));
};