fix typos

This commit is contained in:
Jacob Levine 2019-02-12 20:42:49 -06:00
parent 6652918ae8
commit e0c159de00

View File

@ -69,7 +69,8 @@ function cnt(tn) {
}, { }, {
merge: true merge: true
}).then( }).then(
teamAssoc = firebase.firestore().collections('UserAssociations').doc(user.uid) teamAssoc.get().then(function(doc) { teamAssoc = firebase.firestore().collections('UserAssociations').doc(user.uid);
teamAssoc.get().then(function(doc) {
if (doc.exists) { if (doc.exists) {
list = doc.data() list = doc.data()
teamNums = Object.keys(list) teamNums = Object.keys(list)