mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 06:54:44 +00:00
fix more typos
This commit is contained in:
parent
e0c159de00
commit
718ca83a1d
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user