fix more typos

This commit is contained in:
Jacob Levine 2019-02-12 20:44:21 -06:00
parent e0c159de00
commit 718ca83a1d

View File

@ -47,7 +47,7 @@ window.onload = function() {
} else {
window.location.replace('../');
}
teamAssoc = firebase.firestore().collections('UserAssociations').doc(user.uid);
teamAssoc = firebase.firestore().collection('UserAssociations').doc(user.uid);
teamAssoc.get().then(function(doc) {
if (doc.exists) {
list = doc.data()
@ -69,7 +69,7 @@ function cnt(tn) {
}, {
merge: true
}).then(
teamAssoc = firebase.firestore().collections('UserAssociations').doc(user.uid);
teamAssoc = firebase.firestore().collection('UserAssociations').doc(user.uid);
teamAssoc.get().then(function(doc) {
if (doc.exists) {
list = doc.data()