removed console log

This commit is contained in:
Jack 2020-05-15 02:58:10 +01:00
parent a586316b55
commit db934b36aa

View file

@ -23,7 +23,7 @@ async function db_getUserResults() {
.where('uid', '==', user.uid)
.get()
.then(data => {
console.log('getting data from db!');
// console.log('getting data from db!');
data.docs.forEach(doc => {
ret.push(doc.data());
})