Remove console log
This commit is contained in:
parent
f584e47952
commit
ce7b382189
|
@ -8,7 +8,6 @@ const auth = app.auth();
|
||||||
async function login() {
|
async function login() {
|
||||||
await auth.signInAnonymously();
|
await auth.signInAnonymously();
|
||||||
const loginState = await auth.getLoginState()
|
const loginState = await auth.getLoginState()
|
||||||
console.log(loginState.isAnonymous);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
login();
|
login();
|
||||||
|
@ -27,7 +26,6 @@ export function increaseDownloadData(value, date) {
|
||||||
count: _.inc(1),
|
count: _.inc(1),
|
||||||
date: date
|
date: date
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
console.log(res)
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -36,7 +34,6 @@ export function increaseDownloadData(value, date) {
|
||||||
count: 1,
|
count: 1,
|
||||||
date: date
|
date: date
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
console.log(res)
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -51,6 +48,5 @@ export function recordDownloadDetail({text, value, type, params, history}) {
|
||||||
params: params,
|
params: params,
|
||||||
history: history
|
history: history
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
console.log(res)
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue