Firestore referenceI fixed most of my other issues but what I've been stuck on for today is figuring how to get a user to have multiple posts under the same uid. Each post is under the, Post:"", field and everything I tried didn't work. Any tips or solutions?
const textToSave = inputTextField.value;
docRef.collection("ask").doc(user.uid).add({
Post: textToSave
}).then(function () {
console.log('saved')
}).catch(function (error) {
console.log('error');
})