fix even more typos

This commit is contained in:
Jacob Levine 2019-02-12 20:46:23 -06:00
parent 718ca83a1d
commit d0d431fb54

View File

@ -68,8 +68,8 @@ function cnt(tn) {
tn: 'captain' tn: 'captain'
}, { }, {
merge: true merge: true
}).then( }).then(function() {
teamAssoc = firebase.firestore().collection('UserAssociations').doc(user.uid); teamAssoc = firebase.firestore().collection('UserAssociations').doc(user.uid)
teamAssoc.get().then(function(doc) { teamAssoc.get().then(function(doc) {
if (doc.exists) { if (doc.exists) {
list = doc.data() list = doc.data()
@ -82,7 +82,7 @@ function cnt(tn) {
document.getElementById(teammem).innerHTML = "<tr><td>You are not part of any teams</td></tr>" document.getElementById(teammem).innerHTML = "<tr><td>You are not part of any teams</td></tr>"
} }
}) })
) })
} }
function signout() { function signout() {