This commit is contained in:
Jacob Levine 2019-03-07 20:19:58 -06:00
parent ee4ee316dd
commit 2c9e553b57

View File

@ -48,7 +48,7 @@ window.onload = function() {
window.location.replace('../');
}
teamAssoc = firebase.firestore().collection('UserAssociations').doc(user.uid);
teamAssoc.get()..then(function(doc) {
teamAssoc.get().then(function(doc) {
if (doc.exists) {
list = doc.data()
teamNums = Object.keys(list)